結果

問題 No.3030 ミラー・ラビン素数判定法のテスト
ユーザー 遭難者遭難者
提出日時 2023-08-21 21:48:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 390 ms / 9,973 ms
コード長 632 bytes
コンパイル時間 474 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 77,268 KB
最終ジャッジ日時 2024-05-09 03:57:08
合計ジャッジ時間 3,316 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 42 ms
52,608 KB
testcase_04 AC 289 ms
76,940 KB
testcase_05 AC 286 ms
77,268 KB
testcase_06 AC 185 ms
77,020 KB
testcase_07 AC 190 ms
76,856 KB
testcase_08 AC 185 ms
77,120 KB
testcase_09 AC 390 ms
76,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def is_prime(x) -> bool:
    if x == 2:
        return True
    if x < 2 or (x & 1) == 0:
        return False
    for a in [2, 325, 9375, 28178, 450775, 9780504, 1795265022]:
        if a % x == 0:
            continue
        d = x - 1
        s = 0
        while (d & 1) == 0:
            d >>= 1
            s += 1
        t = pow(a, d, x)
        if t == 1:
            continue
        for _ in range(s):
            if t == x - 1:
                break
            t = pow(t, 2, x)
        else:
            return False
    return True
for i in range(int(input())):
    x = int(input())
    print(x, 1 if is_prime(x) else 0)
0