Notice
Recent Posts
Recent Comments
Link
- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- androidstudio
- webflux
- 안드로이드
- CustomTab
- 책리뷰
- errorhandling
- ai
- rxjava
- 코틀린
- 학습지
- KotlinInAction
- n3문법
- PR
- github
- 진짜일본어
- 진짜학습지후기
- jlpt
- blog
- 일본어기초
- Kotlin
- Android
- 책추천
- 인공지능
- coroutine
- posting
- pullrequest
- GIT
- 일본어문법
- 진짜학습지
- suspend
Archives
코딩하는 개굴이
BaekJoon/BOJ [JAVA] 숫자카드2_10816 본문
반응형
BaekJoon/BOJ [JAVA] 숫자카드2_10816
HINT: Hashmap을 써보자...!! 없는 데이터를 체크 할 경우 또한 고려 해야 할 것이다...
import java.util.*;
public class baekjoon_10816 {
public static void main(String [] argc){
Scanner scanner = new Scanner(System.in);
int n = Integer.parseInt(scanner.next());
HashMap<Integer, Integer> hashMap = new HashMap<>();
ArrayList<Integer> arrayList = new ArrayList<>();
for(int i=0;i<n;i++){
int tmp = Integer.parseInt(scanner.next());
if(hashMap.containsKey(tmp)) hashMap.replace(tmp, hashMap.get(tmp)+1);
else hashMap.put(tmp, 1);
}
int m = Integer.parseInt(scanner.next());
for(int j=0;j<m;j++){
int check = Integer.parseInt(scanner.next());
if(hashMap.containsKey(check)) arrayList.add(hashMap.get(check));
else arrayList.add(0);
}
for(int z=0;z<m;z++) System.out.print(arrayList.get(z)+" ");
System.out.println();
}
}
반응형
'알고리즘 > Baekjoon' 카테고리의 다른 글
BaekJoon/BOJ [JAVA] 시험 성적_9498 (0) | 2018.11.25 |
---|---|
BaekJoon/BOJ [JAVA] 숫자카드_10815 (0) | 2018.11.16 |
BaekJoon/BOJ [JAVA] 빠른 A+B_15552 (0) | 2018.11.16 |
BaekJoon/BOJ [JAVA] 열 개씩 끊어 출력하기_11721 (0) | 2018.11.16 |
BaekJoon/BOJ [JAVA] 숫자의 합_11720 (0) | 2018.11.16 |
Comments