結果

問題 No.36 素数が嫌い!
ユーザー magurogumamaguroguma
提出日時 2017-08-09 10:34:33
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 848 bytes
コンパイル時間 3,832 ms
コンパイル使用メモリ 75,788 KB
実行使用メモリ 41,688 KB
最終ジャッジ日時 2024-10-12 03:45:32
合計ジャッジ時間 12,095 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,080 KB
testcase_01 AC 148 ms
41,316 KB
testcase_02 AC 131 ms
41,212 KB
testcase_03 AC 141 ms
41,116 KB
testcase_04 WA -
testcase_05 AC 150 ms
41,312 KB
testcase_06 AC 136 ms
41,436 KB
testcase_07 AC 133 ms
41,168 KB
testcase_08 AC 129 ms
41,080 KB
testcase_09 AC 128 ms
40,912 KB
testcase_10 AC 130 ms
40,908 KB
testcase_11 AC 336 ms
41,296 KB
testcase_12 AC 740 ms
41,036 KB
testcase_13 WA -
testcase_14 AC 131 ms
41,052 KB
testcase_15 AC 127 ms
41,032 KB
testcase_16 AC 126 ms
41,252 KB
testcase_17 AC 126 ms
41,556 KB
testcase_18 AC 128 ms
41,616 KB
testcase_19 AC 125 ms
41,312 KB
testcase_20 AC 155 ms
41,312 KB
testcase_21 AC 128 ms
40,956 KB
testcase_22 AC 116 ms
40,948 KB
testcase_23 AC 129 ms
41,384 KB
testcase_24 AC 224 ms
41,488 KB
testcase_25 AC 128 ms
41,688 KB
testcase_26 AC 500 ms
41,468 KB
testcase_27 AC 653 ms
41,016 KB
testcase_28 AC 493 ms
40,948 KB
testcase_29 AC 717 ms
41,172 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*i<=N; i++){
            /*if(N%i == 0){
                divisorCount++;
            }*/
        	for(int j=1; Math.pow(i,j)<=N; j++){
        		if(N%Math.pow(i,j)==0){
        			divisorCount++;
        			if(divisorCount==2){
        				break;
        			}
        		}
        		else{
        			break;
        		}
        	}
            if(divisorCount==2){
                System.out.println("YES");
                flag = false;
                break;
            }
        }
        if(flag)
        	System.out.println("NO");
	}

}
0