結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,620 KB
testcase_01 AC 33 ms
53,464 KB
testcase_02 AC 34 ms
52,468 KB
testcase_03 AC 33 ms
52,736 KB
testcase_04 AC 33 ms
52,776 KB
testcase_05 WA -
testcase_06 AC 45 ms
51,944 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 34 ms
52,488 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 + 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