結果

問題 No.36 素数が嫌い!
ユーザー AT274_AT274_
提出日時 2019-11-05 22:03:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 571 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 111,460 KB
最終ジャッジ日時 2024-09-15 00:14:01
合計ジャッジ時間 32,510 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,012 ms
58,004 KB
testcase_01 AC 1,761 ms
89,588 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 40 ms
10,928 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 34 ms
11,008 KB
testcase_10 AC 33 ms
10,752 KB
testcase_11 AC 1,251 ms
44,184 KB
testcase_12 AC 3,896 ms
111,460 KB
testcase_13 AC 3,909 ms
111,188 KB
testcase_14 AC 1,334 ms
73,700 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 30 ms
10,624 KB
testcase_17 AC 30 ms
10,624 KB
testcase_18 AC 31 ms
10,624 KB
testcase_19 AC 863 ms
50,692 KB
testcase_20 AC 2,167 ms
111,000 KB
testcase_21 AC 1,709 ms
87,784 KB
testcase_22 AC 1,788 ms
90,408 KB
testcase_23 AC 1,090 ms
58,828 KB
testcase_24 AC 1,205 ms
64,280 KB
testcase_25 AC 1,187 ms
63,404 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

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]]


Primes = set(eratosthenes_sieve(int(N ** 0.5) + 2))
for n in range(2, int(N ** 0.5) + 1):
    if N % n == 0:
        nn = N // n
        if not ((n in Primes) and (nn in Primes)):
            print('YES')
            break
else:
    print('NO')
0