불로구

[백준 - 10816 ] - 숫자카드2( JAVA ) 본문

코딩테스트/백준

[백준 - 10816 ] - 숫자카드2( JAVA )

맹이맹이 2021. 2. 11. 21:53
반응형

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		StringBuilder sb = new StringBuilder();
		int cnt = s.nextInt();
		int arr[] = new int[20000001];
		
		for(int i=0; i<cnt; i++) {
			arr[s.nextInt()+10000000]++;
		}
		int num = s.nextInt();
		for(int i=0; i<num; i++) {
			sb.append(arr[s.nextInt()+10000000] + " ");
		}
		System.out.println(sb.toString());
		
	}
}
반응형

'코딩테스트 > 백준' 카테고리의 다른 글

백준 7568 (JAVA) - 덩치  (0) 2021.03.06
백준 2231(JAVA) - 분해합  (0) 2021.03.06
백준 2798 (JAVA) - 블랙잭  (0) 2021.03.06
[백준 - 1920 ] - 수찾기 ( JAVA )  (0) 2021.02.11
Comments