結果

問題 No.36 素数が嫌い!
ユーザー togatogatogatoga
提出日時 2015-09-02 10:35:03
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 492 bytes
コンパイル時間 1,911 ms
コンパイル使用メモリ 76,460 KB
実行使用メモリ 177,012 KB
最終ジャッジ日時 2024-07-18 17:41:25
合計ジャッジ時間 24,607 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 704 ms
176,496 KB
testcase_01 AC 689 ms
176,244 KB
testcase_02 AC 695 ms
175,864 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 690 ms
176,372 KB
testcase_08 AC 695 ms
176,372 KB
testcase_09 AC 694 ms
176,240 KB
testcase_10 AC 688 ms
175,596 KB
testcase_11 AC 698 ms
175,984 KB
testcase_12 AC 708 ms
176,116 KB
testcase_13 WA -
testcase_14 AC 711 ms
176,244 KB
testcase_15 AC 694 ms
175,852 KB
testcase_16 AC 692 ms
176,368 KB
testcase_17 AC 693 ms
176,240 KB
testcase_18 AC 678 ms
175,984 KB
testcase_19 AC 700 ms
175,860 KB
testcase_20 AC 713 ms
176,112 KB
testcase_21 AC 691 ms
175,988 KB
testcase_22 AC 679 ms
176,368 KB
testcase_23 AC 689 ms
176,112 KB
testcase_24 AC 687 ms
175,604 KB
testcase_25 AC 716 ms
176,108 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
cnt = 0
is_prime = [True] * (10**7 + 10)
prime = []
def sieve(N):
    is_prime[0] = False
    is_prime[1] = False
    for i in range(2, N):
        if (is_prime[i]):
            prime.append(i)
            for j in range(i*i, N, i):
                is_prime[j] = False
sieve(10 ** 7)
for x in prime:
    if (x * x > N):
        break
    while (N % x == 0):
        N /= x
        cnt += 1
if (N != 1):
    cnt += 1
if (cnt == 0 or cnt == 1):
    print "NO"
else:
    print "YES"
0