結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 28 ms
10,496 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 858 ms
10,624 KB
testcase_05 AC 882 ms
10,624 KB
testcase_06 AC 395 ms
10,752 KB
testcase_07 AC 398 ms
10,752 KB
testcase_08 AC 399 ms
10,880 KB
testcase_09 AC 1,570 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 == 2 or n == 3 or n == 5 or n == 7:
        return True
    if n % 2 == 0 or n % 3 == 0 or n % 5 == 0 or n % 7 == 0:
        return False
    if n < 121:
        return True
    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