728x90
소수의 조건에 일치하는, 즉 1과 자기자신으로만 나누어지는
수를 counting하여 마지막에 그 수를 출력해줍니다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); int input; int res=0; int mok, mok_0; for (int i=0; i<N; i++) { mok_0=0; input = sc.nextInt(); for(mok=1; mok<=input; mok++) { if(input%mok==0) mok_0++; } if(mok_0==2) res++; } System.out.println(res); } } |
'알고리즘 풀이 > 백준' 카테고리의 다른 글
[백준][Java] 2581번 소수 (0) | 2018.04.29 |
---|---|
[백준][Java] 6064번 카잉 달력 (0) | 2018.04.29 |
[백준][Java] 1011번 Fly me to the Alpha Centauri (0) | 2018.04.26 |
[백준][Java] 10250번 ACM 호텔 (0) | 2018.04.26 |
[백준][Java] 1475번 방 번호 (0) | 2018.04.26 |