結果

問題 No.3030 ミラー・ラビン素数判定法のテスト
ユーザー trineutrontrineutron
提出日時 2020-11-25 20:10:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 925 ms / 9,973 ms
コード長 684 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 79,124 KB
最終ジャッジ日時 2024-11-16 23:34:00
合計ジャッジ時間 4,057 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,888 KB
testcase_01 AC 45 ms
53,632 KB
testcase_02 AC 45 ms
54,144 KB
testcase_03 AC 44 ms
54,272 KB
testcase_04 AC 595 ms
79,124 KB
testcase_05 AC 594 ms
78,604 KB
testcase_06 AC 256 ms
78,464 KB
testcase_07 AC 265 ms
78,336 KB
testcase_08 AC 254 ms
77,952 KB
testcase_09 AC 925 ms
78,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from random import randrange

def odd(n):
    while n % 2 == 0:
        n //= 2
    return n

def prime(n):
    if n == 1:
        return False
    if n == 2:
        return True
    if n == 3:
        return True
    for i in range(10):
        a = randrange(2, n - 1)
        if pow(a, n - 1, n) != 1:
            return False
        prev = pow(a, odd(n - 1), n)
        if prev == 1:
            continue
        while prev * prev % n != 1:
            prev *= prev
            prev %= n
        if prev != n - 1:
            return False
    return True

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