結果

問題 No.42 貯金箱の溜息
ユーザー Memento mori.Memento mori.
提出日時 2023-08-16 17:09:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 385 bytes
コンパイル時間 2,236 ms
コンパイル使用メモリ 199,816 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-04 00:58:21
合計ジャッジ時間 3,504 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
5,248 KB
testcase_01 RE -
testcase_02 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const int N=1e4+9,mod=1e9+9;
int dp[N];
int main(){
#ifdef memset0
  freopen("1.in","r",stdin);
#endif
  ios::sync_with_stdio(0),cin.tie(0);
  int n=1e4;
  dp[0]=1;
  for(int x:{1,5,10,50,100,500}){
    for(int i=0;i+x<=n;i++){
      (dp[i+x]+=dp[i])%=mod;
    }
  }
  int T;
  cin>>T;
  while(T--){
    cin>>n;
    cout<<dp[n]<<endl;
  }
}
0