結果

問題 No.36 素数が嫌い!
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-04-04 02:08:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 304 ms / 5,000 ms
コード長 1,582 bytes
コンパイル時間 3,998 ms
コンパイル使用メモリ 79,216 KB
実行使用メモリ 92,420 KB
最終ジャッジ日時 2024-06-27 00:18:06
合計ジャッジ時間 10,344 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 200 ms
65,532 KB
testcase_01 AC 247 ms
80,928 KB
testcase_02 AC 124 ms
41,432 KB
testcase_03 AC 128 ms
41,324 KB
testcase_04 AC 125 ms
41,396 KB
testcase_05 AC 124 ms
41,304 KB
testcase_06 AC 121 ms
40,680 KB
testcase_07 AC 129 ms
41,680 KB
testcase_08 AC 118 ms
40,176 KB
testcase_09 AC 129 ms
41,412 KB
testcase_10 AC 129 ms
41,640 KB
testcase_11 AC 202 ms
60,216 KB
testcase_12 AC 301 ms
92,420 KB
testcase_13 AC 304 ms
92,100 KB
testcase_14 AC 223 ms
73,168 KB
testcase_15 AC 123 ms
41,228 KB
testcase_16 AC 129 ms
41,264 KB
testcase_17 AC 130 ms
41,448 KB
testcase_18 AC 128 ms
41,520 KB
testcase_19 AC 198 ms
63,784 KB
testcase_20 AC 284 ms
91,956 KB
testcase_21 AC 234 ms
79,560 KB
testcase_22 AC 251 ms
81,748 KB
testcase_23 AC 192 ms
65,372 KB
testcase_24 AC 217 ms
68,508 KB
testcase_25 AC 213 ms
67,988 KB
testcase_26 AC 233 ms
72,856 KB
testcase_27 AC 279 ms
85,344 KB
testcase_28 AC 233 ms
71,944 KB
testcase_29 AC 298 ms
90,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.36 素数が嫌い!

import java.util.*;
import java.io.*;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No36 {
    
    static final Scanner sc = new Scanner(System.in);
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() {
        long n = sc.nextLong();
        int[] primes = sieveOfEratosthenes((int)sqrt(n));
        if (primes == null) {
            out.println("NO");
            return;
        }
        int cnt = 0;
        for (int i=0; i<primes.length; i++) {

            if (n%primes[i] == 0) cnt++;
            if (cnt == 2 || n%((long)primes[i]*primes[i]) == 0) {
                out.println("YES");
                return;
            }
        }
        out.println("NO");
    }

    static int[] sieveOfEratosthenes(int n) {
        if (n < 2) return null;
        boolean[] isPrime = new boolean[n];
        fill(isPrime,true);
        int[] res = new int[n];
        int ptr = 0;
        isPrime[0] = isPrime[1] = false;
        for (int i=2; i<n; i++) {
            if (isPrime[i]) {
                res[ptr++] = i;
                for (int j=i+i; j<n; j+=i) isPrime[j] = false;
            }
        }
        return Arrays.copyOfRange(res,0,ptr);
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        sc.close();
    }

    static void trace(Object... o) { System.out.println(deepToString(o));}
}
0