結果

問題 No.2751 429-like Number
ユーザー noriocnorioc
提出日時 2024-05-11 05:44:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,640 ms / 4,000 ms
コード長 524 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 78,856 KB
最終ジャッジ日時 2024-12-20 08:16:34
合計ジャッジ時間 26,265 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
65,092 KB
testcase_01 AC 57 ms
66,268 KB
testcase_02 AC 58 ms
65,352 KB
testcase_03 AC 57 ms
65,708 KB
testcase_04 AC 55 ms
65,120 KB
testcase_05 AC 56 ms
65,024 KB
testcase_06 AC 62 ms
65,204 KB
testcase_07 AC 1,111 ms
77,536 KB
testcase_08 AC 1,546 ms
77,172 KB
testcase_09 AC 1,527 ms
75,548 KB
testcase_10 AC 1,537 ms
75,368 KB
testcase_11 AC 1,559 ms
77,364 KB
testcase_12 AC 1,035 ms
77,844 KB
testcase_13 AC 1,535 ms
77,584 KB
testcase_14 AC 1,640 ms
77,072 KB
testcase_15 AC 87 ms
75,284 KB
testcase_16 AC 1,375 ms
78,168 KB
testcase_17 AC 1,370 ms
78,200 KB
testcase_18 AC 1,027 ms
77,632 KB
testcase_19 AC 1,014 ms
77,776 KB
testcase_20 AC 1,033 ms
77,932 KB
testcase_21 AC 1,018 ms
78,124 KB
testcase_22 AC 1,039 ms
78,040 KB
testcase_23 AC 1,028 ms
77,776 KB
testcase_24 AC 1,035 ms
77,628 KB
testcase_25 AC 1,054 ms
78,856 KB
testcase_26 AC 1,011 ms
77,824 KB
testcase_27 AC 1,015 ms
77,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import isqrt


def primes(n):
    ps = [2]
    t = [True] * (n + 1)
    for i in range(3, n+1, 2):
        if t[i]:
            ps.append(i)
            for j in range(i+i, n+1, i):
                t[j] = False
    return ps


ps = primes(isqrt(10 ** 10) + 10)

Q = int(input())
for _ in range(Q):
    A = int(input())
    x = A
    cnt = 0
    for p in ps:
        while x % p == 0:
            x //= p
            cnt += 1
        if cnt > 3: break

    if x > 1: cnt += 1
    print('Yes' if cnt == 3 else 'No')
0