結果
問題 | No.41 貯金箱の溜息(EASY) |
ユーザー | moti |
提出日時 | 2015-07-16 18:18:02 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 20 ms / 5,000 ms |
コード長 | 553 bytes |
コンパイル時間 | 768 ms |
コンパイル使用メモリ | 78,852 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-08 08:13:06 |
合計ジャッジ時間 | 1,776 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 19 ms
5,248 KB |
testcase_01 | AC | 20 ms
5,376 KB |
ソースコード
#include <iostream> #include <algorithm> #include <cmath> #include <vector> #include <complex> #include <queue> #include <set> #include <map> using namespace std; #define REP(i,a,b) for(int i=a;i<(int)b;i++) #define rep(i,n) REP(i,0,n) typedef long long ll; ll dp[111111]; //int constexpr MOD = 1e9+7; int constexpr MOD = 1e9+9; int main() { rep(i, 111111) dp[i] = 1; REP(i, 1, 10) REP(j, i, 111111) { (dp[j] += dp[j-i]) %= MOD; } int T; cin >> T; while(T--) { ll M; cin >> M; cout << dp[M/111111] << endl; } return 0; }