結果

問題 No.36 素数が嫌い!
ユーザー magurogumamaguroguma
提出日時 2017-08-08 18:23:16
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 549 bytes
コンパイル時間 3,061 ms
コンパイル使用メモリ 74,864 KB
実行使用メモリ 41,864 KB
最終ジャッジ日時 2024-10-12 00:14:04
合計ジャッジ時間 8,395 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 117 ms
41,292 KB
testcase_03 AC 121 ms
41,104 KB
testcase_04 AC 109 ms
40,192 KB
testcase_05 AC 123 ms
41,048 KB
testcase_06 AC 123 ms
41,188 KB
testcase_07 AC 118 ms
40,776 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 163 ms
41,132 KB
testcase_12 AC 245 ms
41,488 KB
testcase_13 AC 240 ms
41,548 KB
testcase_14 WA -
testcase_15 RE -
testcase_16 AC 121 ms
40,876 KB
testcase_17 AC 112 ms
40,176 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 183 ms
40,872 KB
testcase_27 AC 216 ms
41,072 KB
testcase_28 AC 193 ms
41,144 KB
testcase_29 AC 223 ms
40,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class yuki36 {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
        Scanner sc = new Scanner(System.in);
        long N = sc.nextLong();

        int divisorCount = 0;
        for(long i=2; i<=Math.pow(N, 0.5); i++){
            if(N%i == 0){
                divisorCount++;
            }
            if(divisorCount==2){
                System.out.println("YES");
                System.exit(1);
            }
        }
        System.out.println("NO");
	}

}
0