結果

問題 No.36 素数が嫌い!
ユーザー flippergoflippergo
提出日時 2020-12-31 19:08:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,512 ms / 5,000 ms
コード長 508 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 189,172 KB
最終ジャッジ日時 2024-10-09 18:20:52
合計ジャッジ時間 46,314 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,477 ms
187,264 KB
testcase_01 AC 1,475 ms
187,912 KB
testcase_02 AC 1,512 ms
187,028 KB
testcase_03 AC 1,429 ms
187,408 KB
testcase_04 AC 1,439 ms
188,288 KB
testcase_05 AC 1,446 ms
187,580 KB
testcase_06 AC 1,401 ms
188,444 KB
testcase_07 AC 1,387 ms
187,448 KB
testcase_08 AC 1,427 ms
187,548 KB
testcase_09 AC 1,449 ms
187,448 KB
testcase_10 AC 1,437 ms
187,032 KB
testcase_11 AC 1,438 ms
188,072 KB
testcase_12 AC 1,454 ms
187,732 KB
testcase_13 AC 1,465 ms
188,040 KB
testcase_14 AC 1,448 ms
189,172 KB
testcase_15 AC 1,445 ms
187,168 KB
testcase_16 AC 1,432 ms
187,652 KB
testcase_17 AC 1,442 ms
186,896 KB
testcase_18 AC 1,423 ms
187,120 KB
testcase_19 AC 1,460 ms
187,404 KB
testcase_20 AC 1,433 ms
187,156 KB
testcase_21 AC 1,419 ms
187,048 KB
testcase_22 AC 1,418 ms
187,272 KB
testcase_23 AC 1,437 ms
187,612 KB
testcase_24 AC 1,431 ms
187,888 KB
testcase_25 AC 1,451 ms
188,948 KB
testcase_26 AC 1,408 ms
187,548 KB
testcase_27 AC 1,429 ms
187,688 KB
testcase_28 AC 1,474 ms
187,780 KB
testcase_29 AC 1,421 ms
187,892 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
        N = N//q
if N>1:
    C[N]=1
rmax = 0
for c in C:
    rmax = max(rmax,C[c])
if (len(C)==1 and rmax>2) or (len(C)==2 and rmax>1) or (len(C)>=3):
    print("YES")
else:
    print("NO")
0