結果

問題 No.2751 429-like Number
ユーザー yansi819yansi819
提出日時 2024-05-28 20:47:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 695 bytes
コンパイル時間 611 ms
コンパイル使用メモリ 82,668 KB
実行使用メモリ 77,860 KB
最終ジャッジ日時 2024-05-28 20:47:27
合計ジャッジ時間 4,940 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
57,968 KB
testcase_01 AC 37 ms
58,976 KB
testcase_02 AC 37 ms
59,380 KB
testcase_03 AC 39 ms
59,380 KB
testcase_04 AC 37 ms
58,776 KB
testcase_05 AC 38 ms
58,840 KB
testcase_06 WA -
testcase_07 AC 111 ms
76,956 KB
testcase_08 WA -
testcase_09 AC 76 ms
77,192 KB
testcase_10 AC 75 ms
76,940 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 89 ms
77,236 KB
testcase_15 AC 81 ms
77,236 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 prime_numbers():
    res = []
    is_prime = [True] * 100001
    is_prime[0] = is_prime[1] = False
    for i in range(2, int(10000 ** 0.5) + 1):
        if is_prime[i]:
            res.append(i)
            for j in range(2 * i, 100001, i):
                is_prime[j] = False
    return res

def prime_factors(N):
    res = []
    for i in primes:
        while N % i == 0:
            res.append(i)
            N //= i
        if N == 1: break
    if N != 1: res.append(N)
    return res

Q = int(input())
A = [int(input()) for _ in range(Q)]
primes = prime_numbers()

for i in range(Q):
    pf = prime_factors(A[i])
    if len(pf) == 3:
        print("Yes")
    else:
        print("No")
0