結果

問題 No.2269 eN!の整数部分の下1桁
ユーザー tassei903tassei903
提出日時 2023-04-14 21:49:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 605 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 82,336 KB
最終ジャッジ日時 2024-10-10 12:33:05
合計ジャッジ時間 3,457 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,620 KB
testcase_01 AC 37 ms
53,352 KB
testcase_02 AC 37 ms
52,444 KB
testcase_03 AC 37 ms
52,328 KB
testcase_04 AC 37 ms
53,548 KB
testcase_05 AC 37 ms
52,680 KB
testcase_06 AC 39 ms
52,320 KB
testcase_07 AC 38 ms
52,960 KB
testcase_08 AC 38 ms
52,624 KB
testcase_09 AC 38 ms
53,060 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 -
testcase_20 AC 216 ms
82,336 KB
testcase_21 AC 228 ms
82,268 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
n = ni()

def f(a, b):
    res = 1
    for i in range(a, a-b, -1):
        res *= i
        res %= 10
    return res

for _ in range(n):
    N = ni()
    ans = 0
    for k in range(min(10, N+1)):
        ans += f(N, k)
        ans %= 10
    print(ans)
0