結果
問題 | No.577 Prime Powerful Numbers |
ユーザー | maspy |
提出日時 | 2020-03-25 22:44:55 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,207 bytes |
コンパイル時間 | 108 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 11,392 KB |
最終ジャッジ日時 | 2024-06-10 11:54:44 |
合計ジャッジ時間 | 2,493 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
11,264 KB |
testcase_01 | AC | 53 ms
11,136 KB |
testcase_02 | WA | - |
testcase_03 | AC | 147 ms
11,264 KB |
testcase_04 | AC | 47 ms
11,136 KB |
testcase_05 | AC | 411 ms
11,264 KB |
testcase_06 | AC | 142 ms
11,136 KB |
testcase_07 | AC | 488 ms
11,136 KB |
testcase_08 | AC | 133 ms
11,136 KB |
testcase_09 | AC | 123 ms
11,392 KB |
testcase_10 | AC | 34 ms
11,264 KB |
ソースコード
#!/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(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))