結果

問題 No.36 素数が嫌い!
ユーザー YamaKasaYamaKasa
提出日時 2018-06-15 02:12:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 231 ms / 5,000 ms
コード長 559 bytes
コンパイル時間 2,096 ms
コンパイル使用メモリ 74,648 KB
実行使用メモリ 41,612 KB
最終ジャッジ日時 2024-06-30 14:40:33
合計ジャッジ時間 7,699 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 170 ms
41,336 KB
testcase_01 AC 214 ms
41,476 KB
testcase_02 AC 125 ms
41,188 KB
testcase_03 AC 120 ms
41,120 KB
testcase_04 AC 119 ms
40,976 KB
testcase_05 AC 108 ms
40,468 KB
testcase_06 AC 116 ms
41,344 KB
testcase_07 AC 123 ms
41,372 KB
testcase_08 AC 108 ms
40,088 KB
testcase_09 AC 123 ms
40,988 KB
testcase_10 AC 120 ms
41,244 KB
testcase_11 AC 163 ms
41,544 KB
testcase_12 AC 231 ms
41,264 KB
testcase_13 AC 219 ms
40,296 KB
testcase_14 AC 187 ms
41,076 KB
testcase_15 AC 125 ms
41,612 KB
testcase_16 AC 118 ms
41,292 KB
testcase_17 AC 119 ms
41,156 KB
testcase_18 AC 121 ms
41,352 KB
testcase_19 AC 170 ms
41,292 KB
testcase_20 AC 213 ms
40,336 KB
testcase_21 AC 204 ms
41,032 KB
testcase_22 AC 202 ms
41,480 KB
testcase_23 AC 156 ms
40,020 KB
testcase_24 AC 179 ms
41,264 KB
testcase_25 AC 165 ms
40,160 KB
testcase_26 AC 187 ms
41,320 KB
testcase_27 AC 205 ms
40,444 KB
testcase_28 AC 189 ms
41,436 KB
testcase_29 AC 221 ms
40,896 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) >= 2) {
				System.out.println("YES");
			}else {
				System.out.println("NO");
			}
		}

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

		return cnt;
	}
}
0