結果

問題 No.36 素数が嫌い!
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-15 06:47:08
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,887 bytes
コンパイル時間 4,605 ms
コンパイル使用メモリ 77,312 KB
実行使用メモリ 108,324 KB
最終ジャッジ日時 2024-11-15 18:12:20
合計ジャッジ時間 37,892 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 303 ms
60,844 KB
testcase_01 AC 312 ms
108,188 KB
testcase_02 AC 306 ms
61,020 KB
testcase_03 AC 301 ms
63,268 KB
testcase_04 AC 298 ms
108,324 KB
testcase_05 AC 308 ms
54,388 KB
testcase_06 AC 297 ms
53,924 KB
testcase_07 AC 302 ms
54,044 KB
testcase_08 AC 298 ms
54,152 KB
testcase_09 AC 297 ms
54,300 KB
testcase_10 AC 297 ms
54,028 KB
testcase_11 AC 301 ms
54,108 KB
testcase_12 AC 301 ms
54,088 KB
testcase_13 AC 299 ms
53,980 KB
testcase_14 AC 305 ms
54,176 KB
testcase_15 AC 298 ms
53,976 KB
testcase_16 AC 295 ms
53,784 KB
testcase_17 AC 302 ms
54,264 KB
testcase_18 AC 300 ms
53,796 KB
testcase_19 AC 303 ms
53,956 KB
testcase_20 AC 308 ms
54,100 KB
testcase_21 AC 300 ms
54,108 KB
testcase_22 AC 302 ms
53,800 KB
testcase_23 AC 301 ms
54,160 KB
testcase_24 AC 317 ms
53,820 KB
testcase_25 AC 305 ms
54,016 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        long num = koko.nextLong();
        
        int counter = 0;                    
        int ptr = 0;                        
        int[] prime = new int[10000];  

        prime[ptr++] = 2;
        prime[ptr++] = 3;           

        for (int n = 5; n <= 100000; n += 2) {      
            int i;
            for (i = 1; i < ptr; i++) { 
                counter++;
                if (n % prime[i] == 0)      
                    break;                      
            }
            if (ptr == i)                       
                prime[ptr++] = n;              
        }
        int count=0;
        int mul=1;
        for(int j=0; j<ptr; j++){
            if(num<=prime[j]){
                break;
            }else if(num%prime[j]==0){
                count++;
                mul=mul*prime[j];
            }
        }
        if(count>2){
            System.out.println("YES");
        }else if(count==2){
            if(mul==num){
                System.out.println("NO");
            }else{
                System.out.println("YES");
            }
        }else if(count==1){
            if(num%(mul*mul)==0&&num!=(mul*mul)){
                System.out.println("YES");
            }else if(num==(mul*mul)){
                System.out.println("NO");
            }else{
                long nnum = num/mul;
                for(int k=10001; (k-1)*(k-1)<=nnum; k++){
                    if(nnum%k==0){
                        System.out.println("YES");
                        break;
                    }else if(k*k>nnum){
                        System.out.println("NO");
                    }
                }
            }
        }else if(count==0){
            System.out.println("NO");
        }
    }
}
0