結果

問題 No.2751 429-like Number
ユーザー KyoSktKyoSkt
提出日時 2024-05-15 20:59:53
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 593 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 83,576 KB
最終ジャッジ日時 2024-05-15 21:00:32
合計ジャッジ時間 35,376 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 884 ms
83,044 KB
testcase_01 AC 878 ms
76,040 KB
testcase_02 AC 893 ms
76,144 KB
testcase_03 AC 889 ms
75,840 KB
testcase_04 AC 874 ms
76,124 KB
testcase_05 AC 894 ms
75,976 KB
testcase_06 AC 899 ms
76,132 KB
testcase_07 AC 2,481 ms
78,096 KB
testcase_08 AC 2,675 ms
77,160 KB
testcase_09 AC 2,576 ms
76,912 KB
testcase_10 AC 2,618 ms
76,756 KB
testcase_11 TLE -
testcase_12 AC 3,398 ms
77,604 KB
testcase_13 AC 1,941 ms
76,876 KB
testcase_14 AC 1,733 ms
77,028 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())
s=set([2])
def f(n):
    for i in s:
        if n%i==0:
            return 
    s.add(n)
    return True
i=3
p=10**5+2
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
        t=True
        for j in s:
            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