結果

問題 No.3030 ミラー・ラビン素数判定法のテスト
ユーザー hari64hari64
提出日時 2021-07-27 22:40:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 474 ms / 9,973 ms
コード長 1,029 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-11-16 23:39:36
合計ジャッジ時間 2,815 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 44 ms
52,352 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 333 ms
77,184 KB
testcase_05 AC 323 ms
77,312 KB
testcase_06 AC 215 ms
77,056 KB
testcase_07 AC 217 ms
77,056 KB
testcase_08 AC 213 ms
77,184 KB
testcase_09 AC 474 ms
77,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def is_prime(n: int) -> bool:  # ミラー–ラビン素数判定法
    # https://qiita.com/srtk86/items/609737d50c9ef5f5dc59
    # http://miller-rabin.appspot.com/
    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, 7, 61, 325, 9375, 28178, 450775,
                     9780504, 1795265022) if a < n]
    if n >= 2**64:
        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)))
0