結果
問題 | No.3030 ミラー・ラビン素数判定法のテスト |
ユーザー | Jashinchan |
提出日時 | 2022-08-24 18:40:54 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 821 bytes |
コンパイル時間 | 145 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 21,632 KB |
最終ジャッジ日時 | 2024-10-12 03:11:36 |
合計ジャッジ時間 | 12,040 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
21,632 KB |
testcase_01 | AC | 32 ms
10,752 KB |
testcase_02 | AC | 30 ms
10,752 KB |
testcase_03 | AC | 31 ms
10,752 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
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 < 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)))