728x90
https://www.acmicpc.net/problem/1978
import java.util.Scanner;
class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int N = scanner.nextInt();
int cnt = 0;
for (int i = 0; i < N; i++) {
int num = scanner.nextInt();
if (num != 1) {
for (int j = 2; j <= num; j++) {
if (num % j == 0) {
if (num != j) {
break;
} else {
cnt++;
}
}
}
}
}
System.out.println(cnt);
scanner.close();
}
}
그래도 풀긴 풀었음;
근데 분명 이것보다 더 좋은 방법 있었는데 뭐였는지 생각안ㄴ남
728x90
'with my rubber duck > codingTest' 카테고리의 다른 글
[백준 2798] 블랙잭 풀어보기 쉽군 ㅎ + 복습 (0) | 2022.07.15 |
---|---|
[백준 10870] 피보나치 수 5 풀기 (0) | 2022.07.14 |
[백준 1316] 그룹단어 체크 + 복습 !! (0) | 2022.07.12 |
[프로그래머스] 숫자 문자열과 영단어 풀어보기 (0) | 2022.07.11 |
[프로그래머스] 없는숫자 더하기 (0) | 2022.07.06 |
댓글