반응형
📖 문제
📃 코드
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main {
static boolean isPrime(int num) {
boolean check = true;
if (num == 1) {
check = false;
} else {
for (int i = 2; i <= Math.sqrt(num); i++) {
if (num % i == 0) {
check = false;
break;
}
}
}
return check;
}
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st;
int cnt = 0;
int N = Integer.parseInt(br.readLine());
st = new StringTokenizer(br.readLine(), " ");
while (st.hasMoreTokens()) {
int num = Integer.parseInt(st.nextToken());
if(isPrime(num)){
cnt++;
}
}
System.out.println(cnt);
}
}
🔗 링크
https://www.acmicpc.net/problem/1978
'Study & Project ✏️ > 알고리즘 📋' 카테고리의 다른 글
백준[JAVA] 2231.분해합 - 자바 (1) | 2022.09.29 |
---|---|
백준[JAVA] 10828.스택 - 자바 (0) | 2022.09.28 |
백준[JAVA] 11650.좌표 정렬하기 - 자바 (0) | 2022.09.18 |
백준[JAVA] 10989.수 정렬하기 3- 자바 (0) | 2022.09.15 |
백준[JAVA] 9251.LCS - 자바 (0) | 2022.09.15 |