結果

問題 No.2751 429-like Number
ユーザー mottchanmottchan
提出日時 2024-05-10 23:41:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 744 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 77,584 KB
最終ジャッジ日時 2024-05-10 23:41:28
合計ジャッジ時間 22,162 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
60,104 KB
testcase_01 AC 49 ms
60,320 KB
testcase_02 AC 50 ms
62,348 KB
testcase_03 AC 52 ms
62,216 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 832 ms
77,048 KB
testcase_08 AC 134 ms
74,036 KB
testcase_09 AC 1,429 ms
72,292 KB
testcase_10 AC 1,552 ms
72,928 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1,698 ms
77,072 KB
testcase_14 AC 1,722 ms
77,080 KB
testcase_15 AC 99 ms
74,352 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def get_prime(n):
    sieve = [True] * (n + 1) 
    i = 2
    while i * i <= n: 
        if sieve[i]:
            for j in range(i * i, n + 1, i):
                sieve[j] = False
        i += 1
    return [i for i in range(2, n + 1) if sieve[i]]

q = int(input())
l = get_prime(100000)

for _ in range(q):
    n = int(input())
    cnt=0
    idx=0
    while cnt < 3 and idx < len(l):
        if n%l[idx] ==0:
            cnt+=1
            n //= l[idx]
        else:
            idx += 1

    if cnt == 3:
        if n == 1:
            print('Yes')
        else:
            print('No')
    elif cnt == 2:
        if n == 1:
            print('No')
        else:
            print(n)
            print('Yes')
    else:
        print('No')
    
0