結果

問題 No.36 素数が嫌い!
ユーザー magurogumamaguroguma
提出日時 2017-08-09 10:35:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 729 ms / 5,000 ms
コード長 847 bytes
コンパイル時間 3,410 ms
コンパイル使用メモリ 74,884 KB
実行使用メモリ 41,580 KB
最終ジャッジ日時 2024-06-27 01:13:36
合計ジャッジ時間 11,212 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
39,912 KB
testcase_01 AC 140 ms
41,236 KB
testcase_02 AC 122 ms
41,244 KB
testcase_03 AC 125 ms
41,460 KB
testcase_04 AC 126 ms
41,080 KB
testcase_05 AC 128 ms
41,204 KB
testcase_06 AC 129 ms
41,248 KB
testcase_07 AC 128 ms
41,440 KB
testcase_08 AC 126 ms
41,552 KB
testcase_09 AC 125 ms
41,204 KB
testcase_10 AC 127 ms
40,944 KB
testcase_11 AC 330 ms
41,084 KB
testcase_12 AC 725 ms
41,440 KB
testcase_13 AC 729 ms
41,276 KB
testcase_14 AC 118 ms
39,852 KB
testcase_15 AC 125 ms
41,464 KB
testcase_16 AC 122 ms
41,020 KB
testcase_17 AC 123 ms
41,460 KB
testcase_18 AC 110 ms
40,116 KB
testcase_19 AC 126 ms
41,580 KB
testcase_20 AC 149 ms
40,996 KB
testcase_21 AC 126 ms
41,284 KB
testcase_22 AC 125 ms
41,468 KB
testcase_23 AC 112 ms
40,020 KB
testcase_24 AC 215 ms
41,232 KB
testcase_25 AC 126 ms
41,500 KB
testcase_26 AC 482 ms
40,264 KB
testcase_27 AC 623 ms
40,068 KB
testcase_28 AC 472 ms
40,188 KB
testcase_29 AC 702 ms
41,256 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