結果
問題 | No.3030 ミラー・ラビン素数判定法のテスト |
ユーザー | hari64 |
提出日時 | 2021-07-27 22:03:30 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,113 bytes |
コンパイル時間 | 154 ms |
コンパイル使用メモリ | 82,468 KB |
実行使用メモリ | 77,604 KB |
最終ジャッジ日時 | 2024-07-23 19:13:32 |
合計ジャッジ時間 | 2,675 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 39 ms
52,096 KB |
testcase_02 | AC | 40 ms
52,352 KB |
testcase_03 | AC | 40 ms
52,224 KB |
testcase_04 | AC | 336 ms
77,604 KB |
testcase_05 | AC | 300 ms
77,156 KB |
testcase_06 | AC | 210 ms
77,312 KB |
testcase_07 | AC | 217 ms
77,056 KB |
testcase_08 | AC | 209 ms
77,056 KB |
testcase_09 | AC | 414 ms
77,432 KB |
ソースコード
def is_prime(n: int) -> bool: # ミラー–ラビン素数判定法 # https://qiita.com/srtk86/items/609737d50c9ef5f5dc59 # https://en.wikipedia.org/wiki/Strong_pseudoprime assert isinstance(n, int) and 0 < n if n == 2: return True if n == 1 or n & 1 == 0: return False d = (n - 1) >> 1 while d & 1 == 0: d >>= 1 # n-1=(2**s)*d (dは奇数) L = [a for a in (2, 325, 9375, 28178, 450775, 9780504, 1795265022) if a < n] if n >= 2**64: # これはwikiによる from random import randint # これだけあればまず誤判定しない L += [randint(1, n-1) for _ in range(20)] for a in L: # nが素数ならばa^d≡1 (mod p) もしくは t = d # a^((2^r)*d)≡-1 (mod p) が成立すべき y = pow(a, t, n) while t != n - 1 and y != 1 and y != n - 1: y = (y * y) % n t <<= 1 if y != n - 1 and t & 1 == 0: return False else: return True n = int(input()) for _ in range(n): x = int(input()) print(x, int(is_prime(x)))