結果

問題 No.3030 ミラー・ラビン素数判定法のテスト
ユーザー るこーそーるこーそー
提出日時 2024-09-09 22:08:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 506 ms / 9,973 ms
コード長 432 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 78,128 KB
最終ジャッジ日時 2024-09-09 22:08:51
合計ジャッジ時間 3,171 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,956 KB
testcase_01 AC 35 ms
54,760 KB
testcase_02 AC 36 ms
55,760 KB
testcase_03 AC 39 ms
55,164 KB
testcase_04 AC 337 ms
78,128 KB
testcase_05 AC 365 ms
77,984 KB
testcase_06 AC 195 ms
77,904 KB
testcase_07 AC 196 ms
77,748 KB
testcase_08 AC 199 ms
77,368 KB
testcase_09 AC 506 ms
77,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import random
def MillerRabin(n,k=20):
  if n==2:return True
  if n<2 or n%2==0:return False
  s,d=0,n-1
  while d&1==0:
    s+=1
    d>>=1
  for _ in range(k):
    a=random.randint(1,n-1)
    x=pow(a,d,n)
    if x!=1 and x!=n-1:
      for __ in range(s):
        x=pow(x,2,n)
        if x==n-1:break 
      else:return False
  return True

n=int(input())
for _ in range(n):
  x=int(input())
  print(x,1 if MillerRabin(x,10) else 0)
0