結果
問題 | No.42 貯金箱の溜息 |
ユーザー | t98slider |
提出日時 | 2024-07-27 14:28:26 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 13 ms / 5,000 ms |
コード長 | 966 bytes |
コンパイル時間 | 4,505 ms |
コンパイル使用メモリ | 263,656 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-27 14:28:31 |
合計ジャッジ時間 | 5,132 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 10 ms
6,816 KB |
testcase_01 | AC | 12 ms
6,940 KB |
testcase_02 | AC | 13 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using ll = long long; using modint = atcoder::static_modint<1000000009>; int main(){ ios::sync_with_stdio(false); cin.tie(0); vector<modint> dp(3000, 1); vector<int> coin = {1, 5, 10, 50, 100, 500}; for(int i = 1; i < coin.size(); i++){ for(int j = coin[i]; j < 3000; j++){ dp[j] += dp[j - coin[i]]; } } int T; cin >> T; while(T--){ long long M, m; cin >> M; if(M < 3000){ cout << dp[M].val() << '\n'; continue; } m = M % 500; modint ans; for(int i = m; i < 3000; i += 500){ modint c = 1, d = 1; for(int j = m; j < 3000; j += 500){ if(j == i)continue; c *= (M - j); d *= (i - j); } ans += dp[i] * c / d; } cout << ans.val() << '\n'; } }