結果

問題 No.2751 429-like Number
ユーザー KDKJKDKJ
提出日時 2024-06-29 03:26:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,365 ms / 4,000 ms
コード長 875 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 78,172 KB
最終ジャッジ日時 2024-06-29 03:27:16
合計ジャッジ時間 29,571 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
64,892 KB
testcase_01 AC 50 ms
65,628 KB
testcase_02 AC 50 ms
66,500 KB
testcase_03 AC 48 ms
65,092 KB
testcase_04 AC 53 ms
64,256 KB
testcase_05 AC 49 ms
65,144 KB
testcase_06 AC 51 ms
65,844 KB
testcase_07 AC 1,304 ms
77,840 KB
testcase_08 AC 1,324 ms
77,648 KB
testcase_09 AC 1,294 ms
76,180 KB
testcase_10 AC 1,297 ms
75,508 KB
testcase_11 AC 1,308 ms
77,748 KB
testcase_12 AC 1,321 ms
78,152 KB
testcase_13 AC 1,316 ms
77,976 KB
testcase_14 AC 1,295 ms
77,596 KB
testcase_15 AC 1,323 ms
77,372 KB
testcase_16 AC 1,324 ms
77,704 KB
testcase_17 AC 1,350 ms
77,444 KB
testcase_18 AC 1,328 ms
78,096 KB
testcase_19 AC 1,332 ms
77,776 KB
testcase_20 AC 1,365 ms
78,060 KB
testcase_21 AC 1,330 ms
77,804 KB
testcase_22 AC 1,327 ms
77,728 KB
testcase_23 AC 1,353 ms
77,732 KB
testcase_24 AC 1,327 ms
78,172 KB
testcase_25 AC 1,334 ms
77,804 KB
testcase_26 AC 1,316 ms
77,892 KB
testcase_27 AC 1,316 ms
77,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict,Counter,deque
from heapq import heappush,heappop


# n以下のすべての素数を列挙する
def eratosthenes_sieve(n):
    is_prime = [True] * (n + 1)
    is_prime[0] = is_prime[1] = False
    primes = set()
    for p in range(2, n + 1):
        if is_prime[p]:
            primes.add(p)
            for q in range(p * p, n + 1, p):
                is_prime[q] = False
    return sorted(list(primes))


def main():
    primes = eratosthenes_sieve(10**5)
    Q = int(input())
    for _ in range(Q):
        a = int(input())
        cnt = 0
        for p in primes:
            while a % p == 0:
                a = a//p
                cnt += 1
        if a > 1:
            cnt += 1
        if cnt == 3:
            print("Yes")
        else:
            print("No")
        
    
    
    



if __name__ == '__main__':
    main()


0