結果

問題 No.2785 四乗足す四の末尾の0
ユーザー miho-4miho-4
提出日時 2024-06-14 22:04:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 954 ms / 2,000 ms
コード長 860 bytes
コンパイル時間 418 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 78,516 KB
最終ジャッジ日時 2024-06-14 22:04:51
合計ジャッジ時間 6,033 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
55,364 KB
testcase_01 AC 37 ms
54,684 KB
testcase_02 AC 39 ms
54,664 KB
testcase_03 AC 38 ms
55,064 KB
testcase_04 AC 37 ms
54,992 KB
testcase_05 AC 37 ms
55,124 KB
testcase_06 AC 38 ms
54,612 KB
testcase_07 AC 39 ms
54,416 KB
testcase_08 AC 38 ms
54,680 KB
testcase_09 AC 39 ms
55,360 KB
testcase_10 AC 43 ms
54,520 KB
testcase_11 AC 37 ms
54,684 KB
testcase_12 AC 40 ms
56,048 KB
testcase_13 AC 77 ms
76,420 KB
testcase_14 AC 193 ms
77,844 KB
testcase_15 AC 799 ms
78,372 KB
testcase_16 AC 39 ms
54,496 KB
testcase_17 AC 949 ms
78,516 KB
testcase_18 AC 954 ms
77,976 KB
testcase_19 AC 897 ms
78,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import random

def mr_test_normal(n: int):
    assert n > 1
    if n == 2:
        return True
    elif n%2 == 0:
        return False
    d = n - 1
    s = 0
    while d & 1 == 0:
        s += 1; d >>= 1
    
    k = 50
    for _ in range(k):
        a = random.randint(2, n-1)
        x = pow(a, d, n) # a^d mod n
        if x == 1 or x == n-1:
            continue
        for _ in range(s):
            x = pow(x, 2, n)
            if x == n-1: # a^(d*2^r) mod n
                break
        else: return False
    return True

n=int(input())
for _ in range(n):
  x=abs(int(input()))
  pr=x**4+4
  if x==1:
    print("Yes")
  elif x%10==5:
    if mr_test_normal(pr):
      print("Yes")
    else:
      print("No")
  else:
    print("No")
  s=str(pr)
  cnt=0
  for i in range(len(s))[::-1]:
    if s[i]=="0":
      cnt+=1
    else:
      break
  print(cnt)
0