結果
問題 | No.41 貯金箱の溜息(EASY) |
ユーザー | imulan |
提出日時 | 2016-07-30 13:10:24 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 25 ms / 5,000 ms |
コード長 | 856 bytes |
コンパイル時間 | 1,631 ms |
コンパイル使用メモリ | 166,588 KB |
実行使用メモリ | 6,816 KB |
最終ジャッジ日時 | 2024-11-06 21:15:19 |
合計ジャッジ時間 | 2,210 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
6,816 KB |
testcase_01 | AC | 25 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i)) #define each(itr,c) for(__typeof(c.begin()) itr=c.begin(); itr!=c.end(); ++itr) #define all(x) (x).begin(),(x).end() #define mp make_pair #define pb push_back #define fi first #define se second const int mod=1e9+9; int dp[90002]={0}; int sumdp[90002]={0}; int main() { dp[0]=sumdp[0]=1; for(int i=1; i<=9; ++i) { int sum[10]={0}; rep(j,90002) { (sum[j%i]+=dp[j])%=mod; dp[j]=sum[j%i]; // if(i>1) printf("i=%d, dp[%d] = %d\n", i,j,dp[j]); } } for(int i=1; i<=90001; ++i) sumdp[i]=(sumdp[i-1]+dp[i])%mod; int T; cin >>T; rep(times,T) { ll m; cin >>m; cout << sumdp[m/111111] << endl; } return 0; }