結果

問題 No.2751 429-like Number
ユーザー KyoSktKyoSkt
提出日時 2024-05-15 21:37:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 578 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 78,628 KB
最終ジャッジ日時 2024-05-15 21:37:28
合計ジャッジ時間 19,487 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
63,708 KB
testcase_01 AC 49 ms
62,952 KB
testcase_02 AC 50 ms
64,580 KB
testcase_03 AC 46 ms
63,668 KB
testcase_04 AC 47 ms
63,988 KB
testcase_05 AC 47 ms
64,192 KB
testcase_06 WA -
testcase_07 AC 135 ms
78,628 KB
testcase_08 AC 104 ms
78,060 KB
testcase_09 AC 92 ms
75,276 KB
testcase_10 AC 1,509 ms
78,288 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 292 ms
77,672 KB
testcase_14 AC 648 ms
78,116 KB
testcase_15 AC 1,333 ms
75,932 KB
testcase_16 AC 446 ms
78,024 KB
testcase_17 AC 565 ms
78,484 KB
testcase_18 AC 993 ms
78,568 KB
testcase_19 AC 984 ms
78,392 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 952 ms
77,936 KB
testcase_23 WA -
testcase_24 AC 943 ms
77,844 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 969 ms
78,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

q=int(input())
m=10**5+2
s=[1 for i in range(m)]
s[0]=0
s[1]=0

for i in range(2,m):
    if s[i]==0:
        continue
    j=2
    while i*j<m:
        s[i*j]=0
        j+=1
p=[]
for i in range(m):
    if s[i]==0:
        continue
    p.append(i)

for i in range(q):
    a=int(input())
    k=0
    r=int(a**0.5)+2
    for i in p:
        if i>r:
            k+=1
            break
        while a%i==0:
            a//=i
            k+=1
            if k>3:
                break
        if a==1:
            break
    if k==3:
        print("Yes")
    else:
        print("No")
0