結果

問題 No.36 素数が嫌い!
ユーザー DialBirdDialBird
提出日時 2017-03-12 17:14:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 458 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 88,960 KB
最終ジャッジ日時 2024-06-27 01:02:29
合計ジャッジ時間 21,109 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,080 ms
88,832 KB
testcase_01 AC 4,742 ms
88,832 KB
testcase_02 AC 137 ms
88,908 KB
testcase_03 AC 135 ms
88,928 KB
testcase_04 AC 135 ms
88,832 KB
testcase_05 AC 149 ms
88,832 KB
testcase_06 AC 148 ms
88,832 KB
testcase_07 AC 150 ms
88,832 KB
testcase_08 AC 137 ms
88,960 KB
testcase_09 AC 145 ms
88,832 KB
testcase_10 AC 145 ms
88,940 KB
testcase_11 AC 2,054 ms
88,932 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([])
sqrt_n = int(sqrt(N))
cnt = 0

for i in range(2, sqrt_n + 1):
    if prime_checker[i] == 1:
        if N == 1: break

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

        for j in range(i*2, sqrt_n + 1, i):
            prime_checker[j] = 0

if N != 1:
    cnt += 1

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