結果

問題 No.3030 ミラー・ラビン素数判定法のテスト
ユーザー masa_aamasa_aa
提出日時 2020-09-21 01:48:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,016 ms / 9,973 ms
コード長 697 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-11-16 23:32:39
合計ジャッジ時間 3,973 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 43 ms
51,712 KB
testcase_03 AC 36 ms
51,968 KB
testcase_04 AC 592 ms
76,976 KB
testcase_05 AC 578 ms
77,312 KB
testcase_06 AC 254 ms
76,356 KB
testcase_07 AC 251 ms
76,544 KB
testcase_08 AC 251 ms
76,160 KB
testcase_09 AC 1,016 ms
77,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Miller(N):
    v = [2, 7, 61] if N < 4_759_123_141 else [2, 3, 5, 7, 11, 13, 17] if N < 341_550_071_728_321 else [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37]
    if N < 2:
        return False
    if N in v:
        return True
    d = N - 1
    s = 0
    while d % 2 == 0:
        d //= 2
        s += 1

    for a in v:
        if pow(a, d, N) != 1:
            ok = True
            for r in range(s):
                if pow(a, d * 1 << r, N) == N - 1:
                    ok = 0
                    break
            if ok:
                return False
    return True


import sys
input = sys.stdin.readline
for _ in range(int(input())):
    n = int(input())
    print(n, int(Miller(n)))
0