結果

問題 No.36 素数が嫌い!
ユーザー tentententen
提出日時 2020-11-17 08:40:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 667 bytes
コンパイル時間 2,201 ms
コンパイル使用メモリ 74,832 KB
実行使用メモリ 67,600 KB
最終ジャッジ日時 2024-07-23 01:55:17
合計ジャッジ時間 10,304 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
67,200 KB
testcase_01 WA -
testcase_02 AC 140 ms
67,404 KB
testcase_03 AC 156 ms
67,160 KB
testcase_04 AC 153 ms
67,076 KB
testcase_05 AC 213 ms
67,216 KB
testcase_06 AC 205 ms
67,244 KB
testcase_07 AC 216 ms
67,528 KB
testcase_08 AC 164 ms
67,460 KB
testcase_09 AC 157 ms
67,600 KB
testcase_10 AC 166 ms
67,164 KB
testcase_11 AC 257 ms
67,160 KB
testcase_12 AC 334 ms
67,352 KB
testcase_13 AC 339 ms
67,228 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 155 ms
67,388 KB
testcase_17 AC 143 ms
67,296 KB
testcase_18 AC 160 ms
67,264 KB
testcase_19 AC 172 ms
67,376 KB
testcase_20 AC 225 ms
67,340 KB
testcase_21 AC 167 ms
67,244 KB
testcase_22 AC 201 ms
67,252 KB
testcase_23 AC 202 ms
67,400 KB
testcase_24 WA -
testcase_25 AC 161 ms
67,452 KB
testcase_26 AC 300 ms
67,480 KB
testcase_27 AC 324 ms
67,372 KB
testcase_28 AC 290 ms
67,296 KB
testcase_29 AC 338 ms
67,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long n = sc.nextLong();
        boolean[] isNotPrime = new boolean[10000001];
        for (int i = 2; i <= isNotPrime.length && i <= Math.sqrt(n); i++) {
            if (isNotPrime[i]) {
                if (n % i == 0) {
                    System.out.println("YES");
                    return;
                }
            } else {
                for (int j = 2; j * i < isNotPrime.length; j++) {
                    isNotPrime[i * j] = true;
                }
            }
        }
        System.out.print("NO");
    }
}
0