https://www.acmicpc.net/problem/10807
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt(); // ์ ์์ ๊ฐ์
int[] arr = new int[n];
for (int i = 0; i < n; i++) {
arr[i] = sc.nextInt(); // ์ ์ ์
๋ ฅ ๋ฐ๊ธฐ
}
int v = sc.nextInt(); // ์ฐพ์ผ๋ ค๋ ์ ์
int count = 0;
for (int j = 0; j < n; j++){
if(v == arr[j]){ // ์
๋ ฅ๋ฐ์ ์ ์ ์ค์ ์ฐพ์ผ๋ ค๋ ์ ์๊ฐ ๋ช ๊ฐ์ธ์ง ์ธ๊ธฐ
count++;
}
}
System.out.println(count);
}
}