結果

問題 No.2751 429-like Number
ユーザー NPNP
提出日時 2024-05-10 22:10:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,740 ms / 4,000 ms
コード長 950 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 77,936 KB
最終ジャッジ日時 2024-12-20 05:51:03
合計ジャッジ時間 8,886 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
60,336 KB
testcase_01 AC 49 ms
59,896 KB
testcase_02 AC 50 ms
60,304 KB
testcase_03 AC 50 ms
61,184 KB
testcase_04 AC 49 ms
60,984 KB
testcase_05 AC 51 ms
61,604 KB
testcase_06 AC 51 ms
60,772 KB
testcase_07 AC 84 ms
77,748 KB
testcase_08 AC 76 ms
77,316 KB
testcase_09 AC 77 ms
74,140 KB
testcase_10 AC 1,740 ms
74,196 KB
testcase_11 AC 338 ms
77,120 KB
testcase_12 AC 355 ms
77,428 KB
testcase_13 AC 341 ms
77,432 KB
testcase_14 AC 672 ms
74,208 KB
testcase_15 AC 68 ms
73,648 KB
testcase_16 AC 161 ms
77,352 KB
testcase_17 AC 191 ms
77,764 KB
testcase_18 AC 280 ms
77,580 KB
testcase_19 AC 280 ms
77,552 KB
testcase_20 AC 278 ms
77,216 KB
testcase_21 AC 279 ms
77,884 KB
testcase_22 AC 274 ms
77,384 KB
testcase_23 AC 277 ms
77,380 KB
testcase_24 AC 281 ms
77,424 KB
testcase_25 AC 278 ms
77,936 KB
testcase_26 AC 285 ms
77,764 KB
testcase_27 AC 283 ms
77,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math

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

def count_prime_factors(n, primes):
    original_n = n
    count = 0
    for p in primes:
        if p * p > n:
            break
        while (n % p == 0):
            n //= p
            count += 1
    if n > 1:
        count += 1
    return count

def is_429_like(n, primes):
    return count_prime_factors(n, primes) == 3

input = sys.stdin.read
data = input().split()
Q = int(data[0])
A = list(map(int, data[1:]))
primes = sieve(int(math.sqrt(10**10)) + 1)
results = []
for a in A:
    if is_429_like(a, primes):
        results.append("Yes")
    else:
        results.append("No")

sys.stdout.write("\n".join(results) + "\n")
0