結果
問題 | No.41 貯金箱の溜息(EASY) |
ユーザー | snrnsidy |
提出日時 | 2021-09-08 01:02:18 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 34 ms / 5,000 ms |
コード長 | 536 bytes |
コンパイル時間 | 1,831 ms |
コンパイル使用メモリ | 199,880 KB |
実行使用メモリ | 10,368 KB |
最終ジャッジ日時 | 2024-06-06 13:57:38 |
合計ジャッジ時間 | 2,453 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
10,368 KB |
testcase_01 | AC | 34 ms
10,368 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; const long long int MOD = 1e9 + 9; long long int dp[900010]; int main(void) { cin.tie(0); ios::sync_with_stdio(false); long long int N = 900009; dp[0] = 1; for(int i=0;i<10;i++) { int x = max(1,i); for(int j=0;j<=N;j++) { if(j + x > N) break; dp[j+x] += dp[j]; dp[j+x]%=MOD; } } int tc; cin >> tc; while(tc--) { long long int n; cin >> n; if(n < 111111) { cout << 1 << '\n'; } else { cout << dp[n/111111] << '\n'; } } return 0; }