結果

問題 No.36 素数が嫌い!
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-04-04 02:07:01
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,574 bytes
コンパイル時間 3,936 ms
コンパイル使用メモリ 78,976 KB
実行使用メモリ 104,576 KB
最終ジャッジ日時 2024-07-04 01:40:53
合計ジャッジ時間 10,770 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 201 ms
79,940 KB
testcase_01 AC 234 ms
93,968 KB
testcase_02 RE -
testcase_03 AC 141 ms
54,048 KB
testcase_04 AC 141 ms
53,768 KB
testcase_05 AC 144 ms
53,968 KB
testcase_06 AC 145 ms
54,012 KB
testcase_07 AC 143 ms
54,312 KB
testcase_08 AC 139 ms
54,040 KB
testcase_09 AC 141 ms
53,804 KB
testcase_10 AC 140 ms
53,932 KB
testcase_11 AC 207 ms
71,400 KB
testcase_12 AC 277 ms
104,260 KB
testcase_13 AC 276 ms
104,576 KB
testcase_14 AC 217 ms
86,056 KB
testcase_15 AC 136 ms
54,112 KB
testcase_16 AC 137 ms
53,824 KB
testcase_17 AC 135 ms
53,904 KB
testcase_18 AC 136 ms
54,060 KB
testcase_19 AC 199 ms
75,504 KB
testcase_20 AC 261 ms
104,368 KB
testcase_21 AC 228 ms
92,012 KB
testcase_22 AC 233 ms
94,116 KB
testcase_23 AC 203 ms
79,556 KB
testcase_24 AC 220 ms
81,676 KB
testcase_25 AC 209 ms
81,360 KB
testcase_26 AC 230 ms
85,596 KB
testcase_27 AC 257 ms
98,408 KB
testcase_28 AC 231 ms
85,944 KB
testcase_29 AC 274 ms
102,328 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();
        if (n == 1) {
            out.println("NO");
            return;
        }
        int[] primes = sieveOfEratosthenes((int)sqrt(n));
        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