반응형
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
int[] V = new int[201];
for (int i = 0; i<N; i++)
V[sc.nextInt()+100]++;
System.out.print(V[sc.nextInt()+100]);
}
}
반응형
'Algorithm' 카테고리의 다른 글
백준 13300번 방 배정 [ Java ] (0) | 2020.12.25 |
---|---|
백준 11328번 Strfry [ Java ] (0) | 2020.12.25 |
백준 10808번 알파벳 개수 [ Java ] (0) | 2020.12.25 |
백준 15657번 N과 M (8) [ Java ] (0) | 2020.12.23 |
백준 15656번 N과 M (7) [ Java ] (0) | 2020.12.23 |