結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 187 ms
54,248 KB
testcase_01 AC 223 ms
54,196 KB
testcase_02 AC 133 ms
54,076 KB
testcase_03 AC 133 ms
53,860 KB
testcase_04 AC 131 ms
54,104 KB
testcase_05 AC 134 ms
53,968 KB
testcase_06 AC 135 ms
53,876 KB
testcase_07 AC 135 ms
53,844 KB
testcase_08 AC 136 ms
54,004 KB
testcase_09 AC 136 ms
53,964 KB
testcase_10 AC 134 ms
53,968 KB
testcase_11 AC 176 ms
54,112 KB
testcase_12 AC 244 ms
53,872 KB
testcase_13 WA -
testcase_14 AC 204 ms
54,312 KB
testcase_15 AC 133 ms
54,000 KB
testcase_16 AC 132 ms
53,816 KB
testcase_17 AC 132 ms
54,016 KB
testcase_18 AC 132 ms
53,956 KB
testcase_19 AC 178 ms
54,236 KB
testcase_20 AC 248 ms
53,852 KB
testcase_21 AC 219 ms
54,140 KB
testcase_22 AC 222 ms
54,124 KB
testcase_23 AC 189 ms
54,012 KB
testcase_24 AC 194 ms
53,720 KB
testcase_25 AC 191 ms
54,004 KB
testcase_26 AC 202 ms
54,080 KB
testcase_27 AC 231 ms
54,060 KB
testcase_28 AC 204 ms
53,840 KB
testcase_29 AC 240 ms
53,908 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