結果

問題 No.3030 ミラー・ラビン素数判定法のテスト
ユーザー kappybarkappybar
提出日時 2020-04-29 16:11:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 4,851 ms / 9,973 ms
コード長 526 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-11-16 23:24:21
合計ジャッジ時間 12,164 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
11,008 KB
testcase_01 AC 29 ms
11,136 KB
testcase_02 AC 28 ms
11,008 KB
testcase_03 AC 28 ms
11,008 KB
testcase_04 AC 2,489 ms
11,008 KB
testcase_05 AC 2,279 ms
11,008 KB
testcase_06 AC 411 ms
11,136 KB
testcase_07 AC 429 ms
11,136 KB
testcase_08 AC 430 ms
11,136 KB
testcase_09 AC 4,851 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Miller_Rabin(x):
    import random
    if x < 2 : return False
    if x == 2 : return True
    if x & 1 == 0: return False

    d = x - 1
    while d%2 ==0 : d //= 2

    for _ in range(20):
        p = random.randint(1,x-1)
        a = pow(p,d,x)
        s = d

        while s != x-1 and a != 1 and a != x-1:
            a = (a * a)%x
            s <<= 1

        if a != x-1 and s%2 == 0: return False

    return True

n = int(input())

for _ in range(n):
    x = int(input())
    print(x,1 if Miller_Rabin(x) else 0)
0