結果

問題 No.2751 429-like Number
ユーザー mottchanmottchan
提出日時 2024-05-10 23:38:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 746 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 25,664 KB
最終ジャッジ日時 2024-12-20 07:55:12
合計ジャッジ時間 98,192 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
23,424 KB
testcase_01 AC 46 ms
18,724 KB
testcase_02 AC 73 ms
23,680 KB
testcase_03 AC 73 ms
18,724 KB
testcase_04 AC 49 ms
23,680 KB
testcase_05 AC 48 ms
18,592 KB
testcase_06 AC 97 ms
18,720 KB
testcase_07 TLE -
testcase_08 AC 813 ms
23,680 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 121 ms
18,852 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
権限があれば一括ダウンロードができます

ソースコード

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