結果

問題 No.36 素数が嫌い!
ユーザー AT274_AT274_
提出日時 2019-11-05 22:56:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,534 ms / 5,000 ms
コード長 634 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 111,488 KB
最終ジャッジ日時 2024-09-15 00:14:56
合計ジャッジ時間 34,610 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,117 ms
57,984 KB
testcase_01 AC 1,991 ms
89,344 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 36 ms
11,048 KB
testcase_06 AC 38 ms
10,932 KB
testcase_07 AC 37 ms
11,008 KB
testcase_08 AC 32 ms
10,880 KB
testcase_09 AC 34 ms
11,004 KB
testcase_10 AC 34 ms
10,880 KB
testcase_11 AC 1,072 ms
44,032 KB
testcase_12 AC 3,449 ms
111,488 KB
testcase_13 AC 3,534 ms
111,360 KB
testcase_14 AC 1,522 ms
73,728 KB
testcase_15 AC 29 ms
10,624 KB
testcase_16 AC 30 ms
10,624 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 31 ms
10,496 KB
testcase_19 AC 959 ms
50,688 KB
testcase_20 AC 2,626 ms
110,976 KB
testcase_21 AC 1,938 ms
87,936 KB
testcase_22 AC 1,972 ms
90,368 KB
testcase_23 AC 1,172 ms
58,880 KB
testcase_24 AC 1,463 ms
64,256 KB
testcase_25 AC 1,299 ms
63,360 KB
testcase_26 AC 1,809 ms
72,320 KB
testcase_27 AC 2,045 ms
97,152 KB
testcase_28 AC 1,735 ms
71,168 KB
testcase_29 AC 2,286 ms
107,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())


def eratosthenes_sieve(n):
    if n < 2:
        return []

    is_primes = [True] * (n + 1)
    for x in range(2, int(n ** 0.5 + 1) + 1):
        if is_primes[x]:
            for mx in range(2 * x, n + 1, x):
                is_primes[mx] = False

    return [i for i in range(2, n + 1) if is_primes[i]]


def is_prime(n):
    for x in range(2, int(n ** 0.5) + 1):
        if n % x == 0:
            return False
    return True


Primes = set(eratosthenes_sieve(int(N ** 0.5) + 2))
Primes.add(1)
for p in Primes:
    if (N % p == 0) and is_prime(N // p):
        print('NO')
        exit()
else:
    print('YES')
0