結果

問題 No.2751 429-like Number
ユーザー noriocnorioc
提出日時 2024-05-11 05:44:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,660 ms / 4,000 ms
コード長 524 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 79,216 KB
最終ジャッジ日時 2024-05-11 05:45:15
合計ジャッジ時間 27,326 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
65,852 KB
testcase_01 AC 53 ms
65,328 KB
testcase_02 AC 56 ms
65,596 KB
testcase_03 AC 55 ms
65,344 KB
testcase_04 AC 53 ms
65,632 KB
testcase_05 AC 54 ms
65,296 KB
testcase_06 AC 57 ms
66,016 KB
testcase_07 AC 1,132 ms
77,900 KB
testcase_08 AC 1,563 ms
77,060 KB
testcase_09 AC 1,555 ms
75,588 KB
testcase_10 AC 1,544 ms
75,956 KB
testcase_11 AC 1,567 ms
77,704 KB
testcase_12 AC 1,026 ms
78,236 KB
testcase_13 AC 1,548 ms
78,016 KB
testcase_14 AC 1,660 ms
77,264 KB
testcase_15 AC 86 ms
75,564 KB
testcase_16 AC 1,409 ms
78,420 KB
testcase_17 AC 1,374 ms
77,980 KB
testcase_18 AC 1,003 ms
78,112 KB
testcase_19 AC 1,059 ms
77,900 KB
testcase_20 AC 1,037 ms
78,068 KB
testcase_21 AC 1,014 ms
78,108 KB
testcase_22 AC 1,046 ms
78,392 KB
testcase_23 AC 1,011 ms
77,708 KB
testcase_24 AC 1,059 ms
77,900 KB
testcase_25 AC 1,070 ms
79,216 KB
testcase_26 AC 1,024 ms
78,192 KB
testcase_27 AC 1,031 ms
77,824 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