結果

問題 No.36 素数が嫌い!
ユーザー DialBirdDialBird
提出日時 2017-03-12 17:07:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 474 bytes
コンパイル時間 548 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 130,092 KB
最終ジャッジ日時 2024-06-30 00:32:02
合計ジャッジ時間 21,601 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,055 ms
106,688 KB
testcase_01 AC 4,814 ms
123,212 KB
testcase_02 AC 112 ms
88,596 KB
testcase_03 AC 113 ms
88,808 KB
testcase_04 AC 113 ms
88,664 KB
testcase_05 AC 127 ms
88,996 KB
testcase_06 AC 127 ms
89,084 KB
testcase_07 AC 126 ms
89,148 KB
testcase_08 AC 117 ms
88,888 KB
testcase_09 AC 130 ms
89,032 KB
testcase_10 AC 125 ms
89,080 KB
testcase_11 AC 2,095 ms
106,136 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt

N = int(input())

prime_checker = [1]*10000001
primes = set([])

for i in range(2, int(sqrt(N)) + 1):
    if prime_checker[i] == 1:
        primes.add(i)
        for j in range(i*2, int(sqrt(N)) + 1, i):
            prime_checker[j] = 0

cnt = 0
for i in primes:
    if N == 1:
        break
    while N % i == 0:
        N //= i
        cnt += 1
        if cnt >= 3: break

if N != 1:
    cnt += 1

if cnt >= 3:
    print("YES")
else:
    print("NO")
0