結果

問題 No.2751 429-like Number
ユーザー KyoSktKyoSkt
提出日時 2024-05-15 20:50:38
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 469 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,724 KB
実行使用メモリ 82,940 KB
最終ジャッジ日時 2024-05-15 20:50:50
合計ジャッジ時間 11,136 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 857 ms
76,320 KB
testcase_01 AC 887 ms
75,916 KB
testcase_02 AC 896 ms
76,044 KB
testcase_03 AC 864 ms
75,960 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
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())
s=set([2])
def f(n):
    for i in s:
        if n%i==0:
            return 
    s.add(n)
i=3
p=10**5+1
while i<=p:
    f(i)
    i+=2
for i in range(q):
    a=int(input())
    k=0
    while a!=1:
        if a in s:
            k+=1
            break
        for j in s:
            if a%j==0:
                k+=1
                a//=j
                break
        if k>3:
            break
    if k==3:
        print("Yes")
    else:
        print("No")
0