結果

問題 No.36 素数が嫌い!
ユーザー flippergoflippergo
提出日時 2020-12-31 18:41:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 457 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,548 KB
実行使用メモリ 188,688 KB
最終ジャッジ日時 2024-10-09 17:54:26
合計ジャッジ時間 43,179 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,393 ms
188,312 KB
testcase_01 AC 1,306 ms
187,960 KB
testcase_02 AC 1,316 ms
188,008 KB
testcase_03 AC 1,335 ms
187,476 KB
testcase_04 WA -
testcase_05 AC 1,330 ms
187,888 KB
testcase_06 AC 1,346 ms
187,660 KB
testcase_07 AC 1,364 ms
186,956 KB
testcase_08 AC 1,300 ms
186,944 KB
testcase_09 AC 1,533 ms
187,812 KB
testcase_10 AC 1,285 ms
188,140 KB
testcase_11 AC 1,272 ms
186,984 KB
testcase_12 AC 1,283 ms
188,248 KB
testcase_13 WA -
testcase_14 AC 1,352 ms
187,540 KB
testcase_15 AC 1,365 ms
187,880 KB
testcase_16 AC 1,341 ms
187,224 KB
testcase_17 AC 1,297 ms
188,184 KB
testcase_18 AC 1,294 ms
187,076 KB
testcase_19 AC 1,417 ms
187,700 KB
testcase_20 AC 1,477 ms
187,964 KB
testcase_21 AC 1,423 ms
187,820 KB
testcase_22 AC 1,485 ms
187,420 KB
testcase_23 AC 1,482 ms
187,208 KB
testcase_24 AC 1,393 ms
187,084 KB
testcase_25 AC 1,306 ms
187,816 KB
testcase_26 AC 1,316 ms
188,556 KB
testcase_27 AC 1,319 ms
187,540 KB
testcase_28 AC 1,339 ms
188,688 KB
testcase_29 AC 1,340 ms
188,620 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 N>1:
    C[N]=1
if len(C)>2 or flag==1:
    print("YES")
else:
    print("NO")
0