結果

問題 No.41 貯金箱の溜息(EASY)
ユーザー tottoripapertottoripaper
提出日時 2014-11-24 03:09:51
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 7 ms / 5,000 ms
コード長 676 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 23,936 KB
実行使用メモリ 7,936 KB
最終ジャッジ日時 2024-06-10 22:01:34
合計ジャッジ時間 592 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
7,740 KB
testcase_01 AC 7 ms
7,936 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:26:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   26 |     scanf("%d", &T);
      |     ~~~~~^~~~~~~~~~
main.cpp:30:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   30 |         scanf("%lld", &M);
      |         ~~~~~^~~~~~~~~~~~

ソースコード

diff #

#include <cstdio>

typedef long long ll;

const ll MOD = 1000000000 + 9;

ll dp[10][90002];

int main(){
    dp[0][0] = 1ll;
    
    for(int i=1;i<10;i++){
        for(int j=0;j<=90001;j++){
            dp[i][j] = dp[i-1][j];
            if(j-i >= 0){
                dp[i][j] = (dp[i][j] + dp[i][j-i]) % MOD;
            }
        }
    }

    for(int j=1;j<=90001;j++){
        dp[9][j] = (dp[9][j] + dp[9][j-1]) % MOD;
    }

    int T;
    scanf("%d", &T);

    for(int _=0;_<T;_++){
        ll M;
        scanf("%lld", &M);
        
        int k = static_cast<int>(M / 111111ll);
        
        printf("%lld\n", dp[9][k]);
    }
}
0