結果

問題 No.2751 429-like Number
ユーザー mottchanmottchan
提出日時 2024-05-10 23:41:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,755 ms / 4,000 ms
コード長 746 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 81,644 KB
実行使用メモリ 77,732 KB
最終ジャッジ日時 2024-12-20 07:56:49
合計ジャッジ時間 21,605 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
61,240 KB
testcase_01 AC 47 ms
59,976 KB
testcase_02 AC 51 ms
62,876 KB
testcase_03 AC 53 ms
62,224 KB
testcase_04 AC 48 ms
61,172 KB
testcase_05 AC 47 ms
60,860 KB
testcase_06 AC 55 ms
62,432 KB
testcase_07 AC 812 ms
76,836 KB
testcase_08 AC 122 ms
74,184 KB
testcase_09 AC 1,412 ms
72,728 KB
testcase_10 AC 1,552 ms
72,476 KB
testcase_11 AC 1,684 ms
77,224 KB
testcase_12 AC 821 ms
77,084 KB
testcase_13 AC 1,720 ms
77,032 KB
testcase_14 AC 1,755 ms
76,464 KB
testcase_15 AC 101 ms
73,212 KB
testcase_16 AC 903 ms
77,260 KB
testcase_17 AC 894 ms
77,732 KB
testcase_18 AC 822 ms
76,656 KB
testcase_19 AC 810 ms
76,916 KB
testcase_20 AC 813 ms
77,052 KB
testcase_21 AC 816 ms
77,116 KB
testcase_22 AC 814 ms
76,856 KB
testcase_23 AC 841 ms
76,916 KB
testcase_24 AC 810 ms
76,752 KB
testcase_25 AC 802 ms
77,052 KB
testcase_26 AC 814 ms
76,908 KB
testcase_27 AC 824 ms
77,092 KB
権限があれば一括ダウンロードができます

ソースコード

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