結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,144 KB
testcase_01 AC 45 ms
54,016 KB
testcase_02 AC 47 ms
54,272 KB
testcase_03 AC 47 ms
54,656 KB
testcase_04 AC 605 ms
78,540 KB
testcase_05 AC 521 ms
77,936 KB
testcase_06 AC 231 ms
77,780 KB
testcase_07 AC 249 ms
77,952 KB
testcase_08 AC 226 ms
77,824 KB
testcase_09 AC 953 ms
77,616 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) else 0)
0