結果
問題 | No.41 貯金箱の溜息(EASY) |
ユーザー | myanta |
提出日時 | 2017-05-04 23:15:05 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 8 ms / 5,000 ms |
コード長 | 471 bytes |
コンパイル時間 | 398 ms |
コンパイル使用メモリ | 42,752 KB |
実行使用メモリ | 6,400 KB |
最終ジャッジ日時 | 2024-09-14 07:17:58 |
合計ジャッジ時間 | 942 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 8 ms
6,400 KB |
testcase_01 | AC | 8 ms
6,400 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:34:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 34 | scanf("%d", &t); | ~~~~~^~~~~~~~~~ main.cpp:39:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 39 | scanf("%lld", &m); | ~~~~~^~~~~~~~~~~~
ソースコード
#include<cstdio> #include<vector> using namespace std; using ll=long long; vector<vector<int> > dp; ll mod(ll x) { return x%1000000009; } int main(void) { int t; dp.resize(10); dp[0].resize(90001, 1); for(int i=1;i<10;i++) { dp[i]=dp[i-1]; for(int j=0;j+i<dp[i].size();j++) { dp[i][j+i]=mod(dp[i][j+i]+dp[i][j]); } } scanf("%d", &t); for(int i=0;i<t;i++) { ll m; scanf("%lld", &m); printf("%d\n", dp[9][m/111111]); } return 0; }