結果

問題 No.36 素数が嫌い!
ユーザー YamaKasaYamaKasa
提出日時 2018-06-15 01:53:32
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 497 bytes
コンパイル時間 2,206 ms
コンパイル使用メモリ 76,496 KB
実行使用メモリ 54,416 KB
最終ジャッジ日時 2024-06-30 14:40:05
合計ジャッジ時間 8,605 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 224 ms
53,908 KB
testcase_02 AC 131 ms
54,064 KB
testcase_03 AC 119 ms
52,848 KB
testcase_04 AC 130 ms
54,048 KB
testcase_05 AC 132 ms
53,964 KB
testcase_06 AC 133 ms
53,988 KB
testcase_07 AC 135 ms
54,196 KB
testcase_08 AC 132 ms
54,036 KB
testcase_09 AC 135 ms
54,252 KB
testcase_10 AC 133 ms
54,168 KB
testcase_11 AC 170 ms
54,128 KB
testcase_12 AC 244 ms
54,072 KB
testcase_13 AC 242 ms
53,984 KB
testcase_14 WA -
testcase_15 AC 136 ms
54,124 KB
testcase_16 AC 133 ms
54,188 KB
testcase_17 AC 133 ms
54,104 KB
testcase_18 AC 132 ms
54,108 KB
testcase_19 AC 179 ms
54,236 KB
testcase_20 AC 246 ms
54,244 KB
testcase_21 AC 217 ms
54,000 KB
testcase_22 AC 220 ms
54,176 KB
testcase_23 AC 186 ms
54,416 KB
testcase_24 AC 194 ms
53,988 KB
testcase_25 WA -
testcase_26 AC 201 ms
54,256 KB
testcase_27 AC 233 ms
54,016 KB
testcase_28 AC 201 ms
54,116 KB
testcase_29 AC 237 ms
53,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		long N = scan.nextLong();
		scan.close();
		if(N < 7) {
			System.out.println("NO");
		}else {
			if(numPrime(N) >= 3) {
				System.out.println("YES");
			}else {
				System.out.println("NO");
			}
		}

	}
	public static int numPrime(long n) {
		int cnt = 0;
		for(int i = 2; i <= (int)Math.sqrt(n); i++){
			if(n % i == 0) {
				cnt ++;
			}
		}
		return cnt;
	}
}
0