結果

問題 No.2751 429-like Number
ユーザー KyoSktKyoSkt
提出日時 2024-05-15 21:16:29
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 676 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 84,428 KB
最終ジャッジ日時 2024-05-15 21:16:53
合計ジャッジ時間 22,016 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
71,268 KB
testcase_01 AC 49 ms
64,148 KB
testcase_02 AC 50 ms
64,144 KB
testcase_03 AC 49 ms
65,508 KB
testcase_04 AC 47 ms
64,340 KB
testcase_05 AC 47 ms
64,588 KB
testcase_06 AC 55 ms
65,280 KB
testcase_07 AC 1,631 ms
79,444 KB
testcase_08 AC 1,795 ms
78,212 KB
testcase_09 AC 1,888 ms
76,264 KB
testcase_10 AC 1,845 ms
77,572 KB
testcase_11 AC 3,496 ms
78,320 KB
testcase_12 AC 2,520 ms
78,148 KB
testcase_13 AC 1,113 ms
78,172 KB
testcase_14 AC 982 ms
77,776 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

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=set()
for i in range(m):
    if s[i]==0:
        continue
    p.add(i)


for i in range(q):
    a=int(input())
    k=0
    while a!=1:
        if a in p:
            k+=1
            break
        t=True
        for j in p:
            if a%j==0:
                k+=1
                a//=j
                t=False
            if k>3:
                break
        if k>3:
            break
        if t:
            a=1
            k+=1
    if k==3:
        print("Yes")
    else:
        print("No")
0