結果

問題 No.2785 四乗足す四の末尾の0
ユーザー PNJPNJ
提出日時 2024-06-14 22:22:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 368 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 77,672 KB
最終ジャッジ日時 2024-06-14 22:22:15
合計ジャッジ時間 3,476 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,408 KB
testcase_01 AC 37 ms
52,576 KB
testcase_02 AC 38 ms
52,552 KB
testcase_03 AC 39 ms
52,804 KB
testcase_04 AC 39 ms
53,560 KB
testcase_05 WA -
testcase_06 AC 38 ms
53,428 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 38 ms
53,284 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

# 1,5

def solve():
  N = int(input())
  N = abs(N)
  if N == 0:
    print('No')
    print(0)
    return
  if N == 1:
    print('Yes')
    print(0)
    return
  res = 0
  r = N % 10
  a = N % 100 - r
  c = 40 * a * r**3 + r**4 + 4
  if c % 10 == 0:
    res = 1
  if c % 100 == 0:
    res = 2
  print('No')
  print(res)
  return

for _ in range(int(input())):
  solve()
0