結果

問題 No.3030 ミラー・ラビン素数判定法のテスト
ユーザー PyこまるPyこまる
提出日時 2020-11-11 00:32:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 712 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-11-18 18:48:16
合計ジャッジ時間 5,583 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 WA -
testcase_05 AC 875 ms
10,752 KB
testcase_06 AC 399 ms
10,880 KB
testcase_07 AC 400 ms
10,752 KB
testcase_08 AC 400 ms
10,752 KB
testcase_09 AC 1,566 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def miller_rabin(n):
    if n <= 3:
        return n == 2 or n == 3
    if n in [5, 7, 11, 13, 17]:
        return True
    d = n - 1
    d = d // (d & -d)
    L = (
        [2, 7, 61]
        if n < 1 << 32
        else [2, 3, 5, 7, 11, 13, 17]
        if n < 1 << 64
        else [2, 325, 9375, 28178, 450775, 9780504, 1795265022]
    )
    for a in L:
        t = d
        y = pow(a, t, n)
        if y == 1:
            continue
        while y != n - 1:
            y = (y * y) % n
            if y == 1 or t == n - 1:
                return False
            t <<= 1
    return True


n = int(input())
for i in range(n):
    a = int(input())
    b = 0
    if miller_rabin(a):
        b = 1
    print(a, b)
0