結果

問題 No.2785 四乗足す四の末尾の0
ユーザー ButterflvButterflv
提出日時 2024-06-14 22:02:38
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,981 bytes
コンパイル時間 522 ms
コンパイル使用メモリ 81,588 KB
実行使用メモリ 79,460 KB
最終ジャッジ日時 2024-06-14 22:02:50
合計ジャッジ時間 11,682 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
55,948 KB
testcase_01 AC 37 ms
55,788 KB
testcase_02 AC 38 ms
56,304 KB
testcase_03 AC 38 ms
54,888 KB
testcase_04 AC 38 ms
55,348 KB
testcase_05 AC 40 ms
55,328 KB
testcase_06 AC 39 ms
56,176 KB
testcase_07 AC 39 ms
55,564 KB
testcase_08 AC 41 ms
54,516 KB
testcase_09 AC 38 ms
56,036 KB
testcase_10 AC 38 ms
56,048 KB
testcase_11 AC 38 ms
55,916 KB
testcase_12 AC 43 ms
58,688 KB
testcase_13 AC 94 ms
76,252 KB
testcase_14 AC 299 ms
78,300 KB
testcase_15 AC 1,839 ms
79,460 KB
testcase_16 AC 41 ms
54,836 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# # 高速素数判定
# import random
def Miller_Rabin_fast(n, k):
  if n==2: return True
  if n%2==0: return False
  s, d=0, n-1
  while d%2==0:
    s, d=s+1, d//2
  if n<4759123141:
    test=(2,7,61)
    for a in test:
      if a>n-1: continue
      check=[]
      check.append(pow(a, d, n)==1)
      for r in range(s):
        check.append(pow(a, pow(2, r)*d, n)==n-1)
      if True in check:
        continue
      else:
        return False
    return True
  elif n<=aa:
    test=(2,325,9375,28178,450775,9780504,1795265022)
    for a in test:
      if a>n-1: continue
      check=[]
      check.append(pow(a, d, n)==1)
      for r in range(s):
        check.append(pow(a, pow(2, r)*d, n)==n-1)
      if True in check:
        continue
      else:
        return False
    return True
  else:
    for _ in range(k):
      a=random.randint(1, n-1)
      check=[]
      check.append(pow(a, d, n)==1)
      for r in range(s):
        check.append(pow(a, pow(2, r)*d, n)==n-1)
      if True in check:
        continue
      else:
        return "composite"
    return "probably_prime"

import random

def is_prime(n):
    if n == 2: return True
    if n == 1 or n & 1 == 0: return False

    d = (n - 1) >> 1
    while d & 1 == 0:
        d >>= 1

    for k in range(8):
        a = random.randint(1, n - 1)
        t = d
        y = pow(a, t, n)

        while t != n - 1 and y != 1 and y != n - 1:
            y = (y * y) % n
            t <<= 1

        if y != n - 1 and t & 1 == 0:
            return False

    return True

_10=[10**i for i in range(43)]

def ord_10(n):
  ok = 0
  ng = 42
  while abs(ok-ng)>1:
    mid=(ok+ng)//2
    if n%_10[mid]==0:
      ok=mid
    else:
      ng=mid
  return ok

aa=1<<64

T=int(input())
for _ in range(T):
  N=int(input())
  Tar=N*N*N*N+4
  if Tar<=aa:
    if Miller_Rabin_fast(Tar, 10):
      print("Yes")
    else:
      print("No")
  else:
    if is_prime(Tar):
      print("Yes")
    else:
      print("No")
  print(ord_10(Tar))
0