結果
問題 | No.41 貯金箱の溜息(EASY) |
ユーザー | koba-e964 |
提出日時 | 2015-06-04 20:34:09 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 738 bytes |
コンパイル時間 | 561 ms |
コンパイル使用メモリ | 66,428 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-06 14:07:59 |
合計ジャッジ時間 | 1,036 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 17 ms
5,248 KB |
testcase_01 | RE | - |
ソースコード
#include <algorithm> #include <bitset> #include <cassert> #include <deque> #include <functional> #include <iostream> #include <string> #include <vector> #define REP(i,s,n) for(int i=(int)(s);i<(int)(n);i++) using namespace std; typedef long long int ll; typedef vector<int> VI; typedef pair<int, int> PI; const double EPS=1e-9; const ll mod = 1e9 + 9; const int N = 10, M = 10000; ll dp[N][M]; int main(void){ int t; cin >> t; REP(j, 0, M) { dp[0][j] = 1; } REP (i, 1, N) { REP(j, 0, M) { ll s = 0; if (j >= i) { s += dp[i][j - i]; } s += dp[i - 1][j]; s %= mod; dp[i][j] = s; } } REP (trial, 0, t) { ll m; cin >> m; cout << dp[9][m / 111111] << endl; } }