結果

問題 No.577 Prime Powerful Numbers
ユーザー maspymaspy
提出日時 2020-03-25 22:46:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 493 ms / 2,000 ms
コード長 1,210 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-06-10 11:54:47
合計ジャッジ時間 2,305 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
11,136 KB
testcase_01 AC 57 ms
11,008 KB
testcase_02 AC 37 ms
11,136 KB
testcase_03 AC 147 ms
11,136 KB
testcase_04 AC 47 ms
11,136 KB
testcase_05 AC 410 ms
11,136 KB
testcase_06 AC 142 ms
11,136 KB
testcase_07 AC 493 ms
11,136 KB
testcase_08 AC 132 ms
11,136 KB
testcase_09 AC 120 ms
11,264 KB
testcase_10 AC 32 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines


def MillerRabinTest(n, maxiter=20):
    import random
    if n == 1:
        return False
    elif n == 2:
        return True
    if not n & 1:
        return False

    d = n - 1
    while not (d & 1):
        d >>= 1

    for _ in range(maxiter):
        a = random.randint(1, n - 1)
        t = d
        x = pow(a, t, n)
        while (t != n - 1) and (x != 1) and (x != n - 1):
            x = x * x % n
            t <<= 1
        if (x != n - 1) and not (t & 1):
            return False
    return True


def is_pp(N):
    if N <= 1:
        return False
    for n in [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43]:
        m = int(N ** (1 / n) + .5)
        if m ** n == N:
            return is_pp(m)
    return MillerRabinTest(N)


def solve(N):
    if N == 2:
        return False
    if N % 2 == 0:
        return True
    for n in range(1, 64):
        x = 1 << n
        if x >= N:
            return False
        if is_pp(N - x):
            return True


Q, *N = map(int, read().split())
print('\n'.join('Yes' if solve(n) else 'No' for n in N))
0