結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,828 KB
testcase_01 AC 141 ms
53,960 KB
testcase_02 AC 134 ms
53,704 KB
testcase_03 AC 134 ms
53,852 KB
testcase_04 AC 132 ms
53,808 KB
testcase_05 AC 137 ms
53,820 KB
testcase_06 AC 137 ms
53,656 KB
testcase_07 AC 137 ms
53,876 KB
testcase_08 AC 133 ms
53,716 KB
testcase_09 AC 136 ms
53,668 KB
testcase_10 AC 133 ms
53,700 KB
testcase_11 AC 176 ms
53,744 KB
testcase_12 AC 248 ms
53,636 KB
testcase_13 AC 244 ms
53,660 KB
testcase_14 WA -
testcase_15 AC 133 ms
53,932 KB
testcase_16 AC 134 ms
53,752 KB
testcase_17 AC 136 ms
53,488 KB
testcase_18 AC 132 ms
53,864 KB
testcase_19 AC 130 ms
53,728 KB
testcase_20 AC 141 ms
53,656 KB
testcase_21 AC 132 ms
53,752 KB
testcase_22 AC 133 ms
53,772 KB
testcase_23 AC 134 ms
53,820 KB
testcase_24 AC 154 ms
53,996 KB
testcase_25 AC 139 ms
53,764 KB
testcase_26 AC 205 ms
53,716 KB
testcase_27 AC 231 ms
53,908 KB
testcase_28 AC 202 ms
53,876 KB
testcase_29 AC 241 ms
53,788 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++;
            }
            if(divisorCount==2){
                System.out.println("YES");
                flag = false;
                break;
            }
        }
        if(flag)
        	System.out.println("NO");
	}

}
0