結果

問題 No.2269 eN!の整数部分の下1桁
ユーザー 遭難者遭難者
提出日時 2023-03-05 15:02:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 326 bytes
コンパイル時間 1,301 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 76,276 KB
最終ジャッジ日時 2024-09-18 01:35:56
合計ジャッジ時間 3,687 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,056 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 38 ms
52,880 KB
testcase_03 AC 38 ms
52,180 KB
testcase_04 AC 37 ms
53,488 KB
testcase_05 AC 38 ms
52,744 KB
testcase_06 AC 38 ms
52,624 KB
testcase_07 AC 38 ms
53,772 KB
testcase_08 AC 39 ms
52,800 KB
testcase_09 AC 37 ms
52,176 KB
testcase_10 AC 37 ms
52,448 KB
testcase_11 AC 39 ms
52,880 KB
testcase_12 AC 38 ms
51,948 KB
testcase_13 AC 38 ms
52,424 KB
testcase_14 AC 37 ms
52,408 KB
testcase_15 AC 40 ms
53,056 KB
testcase_16 AC 68 ms
68,964 KB
testcase_17 AC 98 ms
76,040 KB
testcase_18 AC 274 ms
76,276 KB
testcase_19 AC 278 ms
76,148 KB
testcase_20 AC 274 ms
76,116 KB
testcase_21 AC 279 ms
76,188 KB
testcase_22 AC 272 ms
76,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
assert 1 <= t <= 10 ** 5
for _ in range(t):
    n = int(input())
    assert 0 <= n <= 10 ** 18
    if n == 0:
        print(2)
        continue
    ans, now = 1, 1
    while n >= 0:
        now *= n
        now %= 10
        ans += now
        if now == 0:
            break
        n -= 1
    print(ans % 10)
0