結果

問題 No.36 素数が嫌い!
ユーザー YamaKasaYamaKasa
提出日時 2018-06-15 02:37:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 245 ms / 5,000 ms
コード長 544 bytes
コンパイル時間 2,044 ms
コンパイル使用メモリ 75,244 KB
実行使用メモリ 54,312 KB
最終ジャッジ日時 2024-06-30 14:40:42
合計ジャッジ時間 8,528 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 187 ms
54,164 KB
testcase_01 AC 221 ms
54,212 KB
testcase_02 AC 131 ms
53,776 KB
testcase_03 AC 133 ms
53,828 KB
testcase_04 AC 135 ms
53,988 KB
testcase_05 AC 132 ms
54,032 KB
testcase_06 AC 137 ms
53,924 KB
testcase_07 AC 136 ms
54,120 KB
testcase_08 AC 134 ms
54,088 KB
testcase_09 AC 137 ms
54,024 KB
testcase_10 AC 136 ms
54,064 KB
testcase_11 AC 176 ms
54,004 KB
testcase_12 AC 245 ms
54,072 KB
testcase_13 AC 243 ms
54,128 KB
testcase_14 AC 204 ms
53,916 KB
testcase_15 AC 138 ms
53,928 KB
testcase_16 AC 134 ms
53,980 KB
testcase_17 AC 134 ms
54,012 KB
testcase_18 AC 135 ms
53,980 KB
testcase_19 AC 177 ms
53,872 KB
testcase_20 AC 244 ms
54,092 KB
testcase_21 AC 219 ms
54,120 KB
testcase_22 AC 220 ms
54,112 KB
testcase_23 AC 189 ms
54,016 KB
testcase_24 AC 192 ms
53,848 KB
testcase_25 AC 194 ms
54,232 KB
testcase_26 AC 202 ms
54,228 KB
testcase_27 AC 228 ms
54,092 KB
testcase_28 AC 199 ms
54,232 KB
testcase_29 AC 241 ms
54,312 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) {
					cnt ++;
				}
			}
		}

		return cnt;
	}
}
0