結果

問題 No.41 貯金箱の溜息(EASY)
ユーザー 0w10w1
提出日時 2016-12-07 11:44:05
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 16 ms / 5,000 ms
コード長 1,279 bytes
コンパイル時間 1,479 ms
コンパイル使用メモリ 168,248 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-18 19:43:53
合計ジャッジ時間 1,823 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
4,384 KB
testcase_01 AC 16 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
typedef pair< int, int > pii;
typedef vector< int > vi;
typedef vector< vi > vvi;
typedef vector< ll > vl;
typedef vector< vl > vvl;
typedef vector< pii > vp;
typedef vector< vp > vvp;
typedef vector< string > vs;
typedef vector< double > vd;
typedef vector< vd > vvd;

template< class T1, class T2 >
int upmin( T1 &x, T2 v ){
  if( x > v ){
    x = v;
    return 1;
  }
  return 0;
}

template< class T1, class T2 >
int upmax( T1 &x, T2 v ){
  if( x < v ){
    x = v;
    return 1;
  }
  return 0;
}

const int INF = 0x3f3f3f3f;
const int MOD9 = 1e9 + 9;

int T;
vl M;

void init(){
  cin >> T;
  M = vl( T );
  for( int i = 0; i < T; ++i )
    cin >> M[ i ];
}

ll maxm;
vl dp;

void preprocess(){
  maxm = *max_element( M.begin(), M.end() );
  dp = vl( maxm / 111111 + 1 );
  dp[ 0 ] = 1;
  for( int i = 1; i <= 9; ++i )
    for( int j = 0; j + i < dp.size(); ++j )
      if( j + i < dp.size() )
        ( dp[ j + i ] += dp[ j ] ) %= MOD9;
  for( int i = 1; i < dp.size(); ++i )
    ( dp[ i ] += dp[ i - 1 ] ) %= MOD9;
}

void solve(){
  for( int i = 0; i < T; ++i )
    cout << dp[ M[ i ] / 111111 ] << endl;
}

signed main(){
  ios::sync_with_stdio( 0 );
  init();
  preprocess();
  solve();
  return 0;
}
0