結果

問題 No.36 素数が嫌い!
ユーザー flippergoflippergo
提出日時 2020-12-31 18:45:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 485 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 187,904 KB
最終ジャッジ日時 2024-10-09 17:58:50
合計ジャッジ時間 45,926 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,419 ms
187,008 KB
testcase_01 WA -
testcase_02 AC 1,402 ms
187,280 KB
testcase_03 AC 1,471 ms
187,008 KB
testcase_04 AC 1,434 ms
186,752 KB
testcase_05 AC 1,427 ms
187,008 KB
testcase_06 AC 1,405 ms
187,520 KB
testcase_07 AC 1,397 ms
186,980 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 1,420 ms
187,008 KB
testcase_12 AC 1,481 ms
187,008 KB
testcase_13 AC 1,443 ms
187,648 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 1,442 ms
186,880 KB
testcase_17 AC 1,418 ms
186,624 KB
testcase_18 WA -
testcase_19 AC 1,461 ms
187,136 KB
testcase_20 AC 1,438 ms
187,008 KB
testcase_21 AC 1,442 ms
186,880 KB
testcase_22 AC 1,441 ms
186,880 KB
testcase_23 AC 1,507 ms
186,624 KB
testcase_24 WA -
testcase_25 AC 1,419 ms
187,008 KB
testcase_26 AC 1,420 ms
186,624 KB
testcase_27 AC 1,554 ms
187,136 KB
testcase_28 AC 1,426 ms
187,136 KB
testcase_29 AC 1,435 ms
187,520 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 N==1:
    print("NO")
elif len(C)>2 or flag==1:
    print("YES")
else:
    print("NO")
0