結果

問題 No.2751 429-like Number
ユーザー KyoSktKyoSkt
提出日時 2024-05-15 21:45:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,422 ms / 4,000 ms
コード長 582 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 82,728 KB
実行使用メモリ 78,836 KB
最終ジャッジ日時 2024-05-15 21:45:23
合計ジャッジ時間 19,449 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
64,144 KB
testcase_01 AC 46 ms
64,516 KB
testcase_02 AC 44 ms
63,580 KB
testcase_03 AC 46 ms
64,504 KB
testcase_04 AC 48 ms
64,248 KB
testcase_05 AC 47 ms
64,148 KB
testcase_06 AC 48 ms
64,344 KB
testcase_07 AC 132 ms
78,568 KB
testcase_08 AC 108 ms
78,188 KB
testcase_09 AC 90 ms
75,024 KB
testcase_10 AC 1,422 ms
77,584 KB
testcase_11 AC 1,338 ms
78,156 KB
testcase_12 AC 1,341 ms
77,984 KB
testcase_13 AC 285 ms
78,164 KB
testcase_14 AC 631 ms
77,824 KB
testcase_15 AC 1,342 ms
76,048 KB
testcase_16 AC 429 ms
78,212 KB
testcase_17 AC 547 ms
78,140 KB
testcase_18 AC 998 ms
78,836 KB
testcase_19 AC 990 ms
78,196 KB
testcase_20 AC 1,001 ms
78,084 KB
testcase_21 AC 962 ms
77,732 KB
testcase_22 AC 974 ms
77,704 KB
testcase_23 AC 983 ms
78,080 KB
testcase_24 AC 935 ms
78,080 KB
testcase_25 AC 989 ms
77,900 KB
testcase_26 AC 993 ms
78,296 KB
testcase_27 AC 974 ms
77,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

q=int(input())
m=10**5+1000
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)+10
    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