結果
問題 | No.41 貯金箱の溜息(EASY) |
ユーザー | EmKjp |
提出日時 | 2015-03-03 21:03:21 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 20 ms / 5,000 ms |
コード長 | 1,118 bytes |
コンパイル時間 | 691 ms |
コンパイル使用メモリ | 84,996 KB |
実行使用メモリ | 6,940 KB |
最終ジャッジ日時 | 2024-06-24 01:16:45 |
合計ジャッジ時間 | 1,175 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 18 ms
6,812 KB |
testcase_01 | AC | 20 ms
6,940 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:49:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 49 | scanf("%lld", &m); | ~~~~~^~~~~~~~~~~~
ソースコード
#include<iostream> #include<sstream> #include<cstdio> #include<cstring> #include<algorithm> #include<string> #include<vector> #include<cmath> #include<set> #include<map> #include<stack> #include<queue> #include<numeric> #include<functional> #include<complex> using namespace std; #define BET(a,b,c) ((a)<=(b)&&(b)<(c)) #define FOR(i,n) for(int i=0,i##_end=(int(n));i<i##_end;i++) #define SZ(x) (int)(x.size()) #define ALL(x) (x).begin(),(x).end() #define MP make_pair #define FOR_EACH(it,v) for(__typeof(v.begin()) it=v.begin(),it_end=v.end() ; it != it_end ; it++) typedef vector<int> VI; typedef vector<VI> VVI; const int mod = 1000000000 + 9; int main() { int t; cin>>t; VI dp(100001); dp[0] = 1; for(int i=1;i<=9;i++){ FOR(j,SZ(dp) - i){ dp[j + i] += dp[j]; if(dp[j + i] >= mod) dp[j + i] -= mod; } } for(int i=1;i<SZ(dp);i++){ dp[i] += dp[i-1]; dp[i] %= mod; } while(t--){ long long m; scanf("%lld", &m); long long n111111 = m / 111111; cout<<dp[n111111]<<endl; } return 0; }