結果

問題 No.741 AscNumber(Easy)
ユーザー kuc_jacksonkuc_jackson
提出日時 2021-05-06 12:03:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 917 ms / 2,000 ms
コード長 590 bytes
コンパイル時間 2,234 ms
コンパイル使用メモリ 206,824 KB
実行使用メモリ 276,608 KB
最終ジャッジ日時 2024-09-14 04:36:01
合計ジャッジ時間 15,550 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 3 ms
5,376 KB
testcase_35 AC 882 ms
263,808 KB
testcase_36 AC 385 ms
116,712 KB
testcase_37 AC 448 ms
136,936 KB
testcase_38 AC 441 ms
134,936 KB
testcase_39 AC 373 ms
114,560 KB
testcase_40 AC 507 ms
154,500 KB
testcase_41 AC 799 ms
240,992 KB
testcase_42 AC 427 ms
129,152 KB
testcase_43 AC 309 ms
94,208 KB
testcase_44 AC 663 ms
189,440 KB
testcase_45 AC 676 ms
204,160 KB
testcase_46 AC 833 ms
251,136 KB
testcase_47 AC 142 ms
45,184 KB
testcase_48 AC 831 ms
251,136 KB
testcase_49 AC 696 ms
210,176 KB
testcase_50 AC 96 ms
31,360 KB
testcase_51 AC 326 ms
98,944 KB
testcase_52 AC 917 ms
276,608 KB
testcase_53 AC 916 ms
276,600 KB
testcase_54 AC 907 ms
273,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ll mod = 1000000007;

int main(){
    ll N; cin >> N;
    vector<vector<vector<ll>>> dp(N + 2, vector<vector<ll>>(2, vector<ll>(10, 0)));
    dp[1][1][0] = 1; dp[1][0][1] = 1;
    for(int i = 1; i <= N; i++){
        for(int j = 0; j <= 9; j++)for(int k = j; k <= 9; k++){
            dp[i + 1][1][k] = (dp[i + 1][1][k] + dp[i][1][j]) % mod;
            if(k == 0)dp[i + 1][0][k] += dp[i][0][j];
        }
    }
    ll cnt = 0;
    for(int i = 0; i <= 9; i++)cnt = (cnt + dp[N + 1][1][i]) % mod;
    cout << cnt << endl;
}
0