結果

問題 No.2785 四乗足す四の末尾の0
ユーザー miho-4miho-4
提出日時 2024-06-14 21:37:13
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 781 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 81,948 KB
実行使用メモリ 85,816 KB
最終ジャッジ日時 2024-06-14 21:37:30
合計ジャッジ時間 7,417 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,632 KB
testcase_01 AC 42 ms
53,888 KB
testcase_02 AC 42 ms
54,016 KB
testcase_03 AC 43 ms
54,016 KB
testcase_04 AC 39 ms
53,760 KB
testcase_05 AC 38 ms
53,760 KB
testcase_06 AC 39 ms
53,888 KB
testcase_07 AC 40 ms
54,016 KB
testcase_08 AC 41 ms
53,888 KB
testcase_09 AC 41 ms
54,272 KB
testcase_10 AC 42 ms
54,144 KB
testcase_11 AC 43 ms
54,272 KB
testcase_12 AC 48 ms
57,472 KB
testcase_13 AC 102 ms
76,160 KB
testcase_14 AC 365 ms
77,824 KB
testcase_15 TLE -
testcase_16 AC 42 ms
54,400 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
権限があれば一括ダウンロードができます

ソースコード

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=int(input())
  p=x**4+4
  if mr_test_normal(p):
    print("Yes")
  else:
    print("No")
  s=str(p)
  cnt=0
  for i in range(len(s))[::-1]:
    if s[i]=="0":
      cnt+=1
    else:
      break
  print(cnt)
0