結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,496 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
10,496 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 WA -
testcase_05 AC 862 ms
10,496 KB
testcase_06 AC 372 ms
10,496 KB
testcase_07 AC 360 ms
10,624 KB
testcase_08 AC 353 ms
10,496 KB
testcase_09 AC 1,536 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def miller_rabin(n):
    if n < 2:
        return False
    if n < 9:
        return n == 2 or n == 3 or n == 5 or n == 7
    if n % 2 == 0:
        return False
    s, d = 0, n - 1
    while d & 1 == 0:
        s, d = s + 1, d >> 1
    for a in [2, 325, 9375, 28178, 450775, 9780504, 1795265022]:
        x = pow(a, d, n)
        if x in (1, n - 1):
            continue
        for _ in range(s - 1):
            x = (x * x) % n
            if x == n - 1:
                break
        else:
            return False
    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