結果

問題 No.36 素数が嫌い!
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-16 05:42:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 185 ms / 5,000 ms
コード長 900 bytes
コンパイル時間 2,508 ms
コンパイル使用メモリ 74,584 KB
実行使用メモリ 41,692 KB
最終ジャッジ日時 2024-06-27 00:51:12
合計ジャッジ時間 7,494 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,036 KB
testcase_01 AC 158 ms
41,428 KB
testcase_02 AC 116 ms
40,588 KB
testcase_03 AC 109 ms
39,752 KB
testcase_04 AC 123 ms
41,244 KB
testcase_05 AC 127 ms
41,384 KB
testcase_06 AC 123 ms
41,248 KB
testcase_07 AC 124 ms
41,264 KB
testcase_08 AC 123 ms
41,036 KB
testcase_09 AC 112 ms
39,752 KB
testcase_10 AC 121 ms
41,028 KB
testcase_11 AC 146 ms
41,352 KB
testcase_12 AC 185 ms
41,300 KB
testcase_13 AC 180 ms
41,144 KB
testcase_14 AC 125 ms
41,164 KB
testcase_15 AC 112 ms
40,156 KB
testcase_16 AC 114 ms
40,512 KB
testcase_17 AC 123 ms
41,164 KB
testcase_18 AC 127 ms
41,692 KB
testcase_19 AC 132 ms
39,884 KB
testcase_20 AC 184 ms
41,480 KB
testcase_21 AC 158 ms
41,288 KB
testcase_22 AC 172 ms
41,080 KB
testcase_23 AC 157 ms
41,284 KB
testcase_24 AC 135 ms
40,660 KB
testcase_25 AC 148 ms
40,276 KB
testcase_26 AC 163 ms
41,204 KB
testcase_27 AC 174 ms
40,908 KB
testcase_28 AC 159 ms
41,200 KB
testcase_29 AC 171 ms
41,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long N = sc.nextLong();
        int c=0;
        if(N%4==0){
            if(N==4){
                System.out.println("NO");
                return;
            }else{
                System.out.println("YES");
                return;
            }
        }else if(N%2==0){
            c=1;
            N/=2;
        }
        long M = (long)Math.sqrt(N);
        for(long i=3;i<=M; i+=2){
            while(N%i==0){
                c++;
                N/=i;
            }
            if(c>=3){
                System.out.println("YES");
                return;
            }
        }
        if(N>1){
            c++;
        }
        if(c>=3){
            System.out.println("YES");
        }else{
            System.out.println("NO");
        }
    }
}

0