結果
問題 | No.41 貯金箱の溜息(EASY) |
ユーザー | maine_honzuki |
提出日時 | 2020-05-07 09:00:38 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 22 ms / 5,000 ms |
コード長 | 487 bytes |
コンパイル時間 | 1,569 ms |
コンパイル使用メモリ | 167,172 KB |
実行使用メモリ | 6,940 KB |
最終ジャッジ日時 | 2024-07-03 09:18:10 |
合計ジャッジ時間 | 2,037 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 21 ms
6,812 KB |
testcase_01 | AC | 22 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; const int basis = 111111; const ll MOD = 1e9 + 9; int main() { ll dp[100020] = {}; dp[0] = 1; for (int i = 0; i < 10; i++) { int t = i; if (t == 0) t = 1; for (int c = 0; c < 100000; c++) { (dp[c + t] += dp[c]) %= MOD; } } int T; cin >> T; while (T--) { ll M; cin >> M; cout << dp[M / basis] << endl; } }