結果
問題 | No.41 貯金箱の溜息(EASY) |
ユーザー | H3PO4 |
提出日時 | 2020-04-21 21:35:49 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 451 ms / 5,000 ms |
コード長 | 354 bytes |
コンパイル時間 | 88 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 14,720 KB |
最終ジャッジ日時 | 2024-10-09 10:28:35 |
合計ジャッジ時間 | 1,205 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 65 ms
10,752 KB |
testcase_01 | AC | 451 ms
14,720 KB |
ソースコード
T = int(input()) MOD = 10 ** 9 + 9 M = tuple(int(input()) // 111111 for _ in range(T)) MM = max(M) table = [0] * (max(M) + 1) table[0] = 1 for n in range(1, 10): for i in range(MM + 1 - n): table[i + n] = (table[i + n] + table[i]) % MOD for i in range(MM): table[i + 1] = (table[i] + table[i + 1]) % MOD for m in M: print(table[m])