結果
問題 | No.41 貯金箱の溜息(EASY) |
ユーザー | monnu |
提出日時 | 2021-07-13 21:47:28 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 23 ms / 5,000 ms |
コード長 | 674 bytes |
コンパイル時間 | 1,590 ms |
コンパイル使用メモリ | 168,220 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-02 17:02:56 |
合計ジャッジ時間 | 1,908 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
5,248 KB |
testcase_01 | AC | 23 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; //#include <atcoder/all> //using namespace atcoder; using ll=long long; using Graph=vector<vector<int>>; #define MAX 1000000 #define MOD 1000000009 //#define MOD 998244353 //#define INF 1000000000 #define INF 1000000000000000000 int main(){ int M=100000; vector<ll> dp(M+1,0); dp[0]=1; for(int d=1;d<=9;d++){ for(int i=d;i<=M;i++){ dp[i]+=dp[i-d]; dp[i]%=MOD; } } vector<ll> sum(M+1,0); sum[0]=dp[0]; for(int i=1;i<=M;i++){ sum[i]=sum[i-1]+dp[i]; sum[i]%=MOD; } int T; cin>>T; for(int i=0;i<T;i++){ ll a; cin>>a; ll cnt=a/111111; cout<<sum[cnt]<<endl; } }