結果

問題 No.2269 eN!の整数部分の下1桁
ユーザー とりゐとりゐ
提出日時 2023-04-14 21:47:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 275 ms / 2,000 ms
コード長 202 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 76,500 KB
最終ジャッジ日時 2024-10-10 12:30:14
合計ジャッジ時間 3,236 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,048 KB
testcase_01 AC 36 ms
52,616 KB
testcase_02 AC 36 ms
53,408 KB
testcase_03 AC 36 ms
52,664 KB
testcase_04 AC 36 ms
53,128 KB
testcase_05 AC 37 ms
52,604 KB
testcase_06 AC 36 ms
53,300 KB
testcase_07 AC 36 ms
52,272 KB
testcase_08 AC 36 ms
52,628 KB
testcase_09 AC 37 ms
52,868 KB
testcase_10 AC 36 ms
52,872 KB
testcase_11 AC 37 ms
52,884 KB
testcase_12 AC 36 ms
52,236 KB
testcase_13 AC 35 ms
53,608 KB
testcase_14 AC 36 ms
53,036 KB
testcase_15 AC 37 ms
52,768 KB
testcase_16 AC 53 ms
65,380 KB
testcase_17 AC 73 ms
72,292 KB
testcase_18 AC 249 ms
76,404 KB
testcase_19 AC 260 ms
76,500 KB
testcase_20 AC 256 ms
76,372 KB
testcase_21 AC 275 ms
76,336 KB
testcase_22 AC 245 ms
76,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
  n=int(input())
  if n==0:
    print(2)
    continue
  ans=0
  res=1
  for i in range(10):
    x=n-i
    if x>=0:
      ans+=res
      res*=x
      res%=10
  print(ans%10)
0