結果
問題 | No.41 貯金箱の溜息(EASY) |
ユーザー | ano184 |
提出日時 | 2014-10-18 03:04:01 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 143 ms / 5,000 ms |
コード長 | 687 bytes |
コンパイル時間 | 552 ms |
コンパイル使用メモリ | 74,548 KB |
実行使用メモリ | 9,088 KB |
最終ジャッジ日時 | 2024-06-09 16:12:52 |
合計ジャッジ時間 | 1,321 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 139 ms
8,832 KB |
testcase_01 | AC | 143 ms
9,088 KB |
ソースコード
#include <iostream> #include <algorithm> #include <vector> #include <numeric> #include <map> #define repf(x,from,to) for(int (x)=(from);(x)<(to);(x)++) typedef long long ll; using namespace std; int main() { const ll MOD=1000000009, MMX=10000000000; map<ll,ll> mp; vector<int> su; repf(i,1,10) su.push_back(111111*i); mp[0]=1LL;mp[MMX*2]=0LL; repf(i,0,9) for(auto& x: mp){ if(su[i]+x.first <= MMX) (mp[su[i]+x.first] += x.second) %=MOD; } ll w=0; for(auto& x: mp){ (x.second += w)%=MOD; w=x.second; } int T; cin >> T; while( T--){ ll M; cin >> M; auto it = mp.upper_bound(M); it--; cout << it->second <<endl; } return 0; }