728x90
반응형
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 result = 0;
int cnt = sc.nextInt();
int[] arr = new int[cnt];
for(int i=0; i<cnt; i++) {
arr[i] = sc.nextInt();
}
int num = sc.nextInt();
for(int i=0; i<arr.length; i++) {
if(arr[i] == num) {
result++;
}
}
System.out.println(result);
}
}
|
s |
728x90
반응형
'알고리즘' 카테고리의 다른 글
백준 알고리즘 10813번: 공 바꾸기 - JAVA (1) | 2024.04.26 |
---|---|
백준 알고리즘 10810번: 공 넣기 - JAVA (0) | 2024.04.26 |
백준 알고리즘 25314번: 코딩은 체육과목 입니다 - JAVA (0) | 2024.04.26 |
백준 알고리즘 25304번 : 영수증 - JAVA (0) | 2024.04.26 |
백준 알고리즘 2480번: 주사위 세개 - JAVA (0) | 2024.04.26 |