結果

問題 No.36 素数が嫌い!
ユーザー magurogumamaguroguma
提出日時 2017-08-08 18:25:36
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 617 bytes
コンパイル時間 3,247 ms
コンパイル使用メモリ 75,556 KB
実行使用メモリ 54,036 KB
最終ジャッジ日時 2024-10-12 00:14:22
合計ジャッジ時間 9,048 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
49,916 KB
testcase_01 AC 161 ms
52,244 KB
testcase_02 AC 134 ms
52,084 KB
testcase_03 AC 130 ms
51,812 KB
testcase_04 AC 133 ms
51,704 KB
testcase_05 AC 133 ms
52,112 KB
testcase_06 AC 132 ms
51,848 KB
testcase_07 AC 132 ms
52,048 KB
testcase_08 AC 131 ms
51,844 KB
testcase_09 AC 135 ms
51,796 KB
testcase_10 AC 134 ms
51,960 KB
testcase_11 AC 174 ms
51,848 KB
testcase_12 AC 250 ms
51,964 KB
testcase_13 AC 252 ms
52,052 KB
testcase_14 WA -
testcase_15 AC 134 ms
52,140 KB
testcase_16 AC 132 ms
51,888 KB
testcase_17 AC 133 ms
51,864 KB
testcase_18 AC 131 ms
52,244 KB
testcase_19 AC 132 ms
51,952 KB
testcase_20 AC 142 ms
52,164 KB
testcase_21 AC 131 ms
51,888 KB
testcase_22 AC 134 ms
51,836 KB
testcase_23 AC 132 ms
51,972 KB
testcase_24 AC 153 ms
52,092 KB
testcase_25 AC 132 ms
52,320 KB
testcase_26 AC 207 ms
52,232 KB
testcase_27 AC 235 ms
52,372 KB
testcase_28 AC 206 ms
51,912 KB
testcase_29 AC 249 ms
51,836 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();
        boolean flag = true;

        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");
                flag = false;
                break;
            }
        }
        if(flag)
        	System.out.println("NO");
	}

}
0