結果

問題 No.3030 ミラー・ラビン素数判定法のテスト
ユーザー JashinchanJashinchan
提出日時 2022-08-24 18:42:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,497 ms / 9,973 ms
コード長 932 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-04-28 09:56:27
合計ジャッジ時間 5,130 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 839 ms
10,752 KB
testcase_05 AC 827 ms
10,752 KB
testcase_06 AC 362 ms
10,752 KB
testcase_07 AC 362 ms
10,752 KB
testcase_08 AC 367 ms
10,752 KB
testcase_09 AC 1,497 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def miller_rabin(n, bases):
    d, s = n - 1, 0
    while d % 2 == 0:
        d >>= 1
        s += 1
    for a in bases:
        if n <= a:
            return True
        a = pow(a, d, n)
        if a == 1:
            continue
        r = 1
        while a != n - 1:
            if r == s:
                return False
            a = a * a % n
            r += 1
    return True


def is_prime1(n):
    # < 4759123141
    return miller_rabin(n, [2, 7, 61])


def is_prime2(n):
    # < 2 ** 64
    return miller_rabin(n, [2, 325, 9375, 28178, 450775, 9780504, 1795265022])


def is_prime(n):
    """
    https://miller-rabin.appspot.com/
    """
    if n <= 1:
        return False
    if n <= 3:
        return True
    if n % 2 == 0:
        return False
    if n < 4759123141:
        return is_prime1(n)
    else:
        return is_prime2(n)


for i in range(int(input())):
    x = int(input())
    print(x, int(is_prime(x)))
0