結果

問題 No.36 素数が嫌い!
ユーザー flippergoflippergo
提出日時 2020-12-31 18:38:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 438 bytes
コンパイル時間 607 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 188,972 KB
最終ジャッジ日時 2024-10-09 17:50:42
合計ジャッジ時間 39,668 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,184 ms
187,280 KB
testcase_01 AC 1,270 ms
187,272 KB
testcase_02 AC 1,278 ms
187,736 KB
testcase_03 AC 1,190 ms
187,016 KB
testcase_04 WA -
testcase_05 AC 1,187 ms
187,928 KB
testcase_06 AC 1,218 ms
188,096 KB
testcase_07 AC 1,191 ms
187,516 KB
testcase_08 AC 1,189 ms
187,644 KB
testcase_09 AC 1,227 ms
186,780 KB
testcase_10 AC 1,327 ms
188,164 KB
testcase_11 AC 1,274 ms
186,912 KB
testcase_12 AC 1,214 ms
188,248 KB
testcase_13 WA -
testcase_14 AC 1,192 ms
187,992 KB
testcase_15 AC 1,213 ms
187,532 KB
testcase_16 AC 1,211 ms
188,028 KB
testcase_17 AC 1,304 ms
187,960 KB
testcase_18 AC 1,252 ms
187,060 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 1,186 ms
188,204 KB
testcase_25 AC 1,214 ms
188,860 KB
testcase_26 AC 1,241 ms
187,156 KB
testcase_27 AC 1,242 ms
187,912 KB
testcase_28 AC 1,257 ms
187,876 KB
testcase_29 AC 1,309 ms
187,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P = [i for i in range(10**7+1)]
for i in range(2,int((10**7)**0.5)+1):
    for j in range(i*i,10**7+1,i):
        P[j]=P[i]
Q = []
for i in range(2,10**7+1):
    if P[i]==i:
        Q.append(i)
N = int(input())
C = {}
flag = 0
for q in Q:
    while N%q==0:
        if q not in C:
            C[q] = 0
        C[q] += 1
        if C[q]>1:
            flag = 1
        N = N//q
if len(C)>2 or flag==1:
    print("YES")
else:
    print("NO")
0