結果

問題 No.741 AscNumber(Easy)
ユーザー ManjushriMitraManjushriMitra
提出日時 2024-09-16 10:58:13
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 191 ms / 2,000 ms
コード長 969 bytes
コンパイル時間 2,855 ms
コンパイル使用メモリ 248,816 KB
実行使用メモリ 73,612 KB
最終ジャッジ日時 2024-09-16 10:58:20
合計ジャッジ時間 6,751 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 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 2 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 2 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 2 ms
5,376 KB
testcase_35 AC 181 ms
70,200 KB
testcase_36 AC 80 ms
32,476 KB
testcase_37 AC 95 ms
37,572 KB
testcase_38 AC 93 ms
37,016 KB
testcase_39 AC 79 ms
31,828 KB
testcase_40 AC 112 ms
42,172 KB
testcase_41 AC 164 ms
64,316 KB
testcase_42 AC 89 ms
35,456 KB
testcase_43 AC 65 ms
26,624 KB
testcase_44 AC 129 ms
51,072 KB
testcase_45 AC 140 ms
54,868 KB
testcase_46 AC 172 ms
66,976 KB
testcase_47 AC 33 ms
13,952 KB
testcase_48 AC 175 ms
66,944 KB
testcase_49 AC 152 ms
56,448 KB
testcase_50 AC 22 ms
10,496 KB
testcase_51 AC 68 ms
27,776 KB
testcase_52 AC 191 ms
73,612 KB
testcase_53 AC 191 ms
73,524 KB
testcase_54 AC 187 ms
72,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,m,n) for(int i=m; i<int(n); ++i)
#define repll(i,m,n) for(ll i=m; i<ll(n); ++i)
#define all(a) (a).begin(), (a).end()
#define rall(a) (a).rbegin(), (a).rend()
#define fi first
#define se second

template<typename T> bool chmin(T& a, T b){ if(a > b){a = b; return true;} return false; }
template<typename T> bool chmax(T& a, T b){ if(a < b){a = b; return true;} return false; }

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int N;
    cin >> N;
    // string M(N, '9');

    const int mod = 1e9 + 7;
    vector dp(N+1, vector(10, 0));
    dp[0][0] = 1;

    rep(i, 0, N){
        rep(d, 0, 10){
            rep(nxt, d, 10){
                dp[i+1][nxt] += dp[i][d];
                dp[i+1][nxt] %= mod;
            }
        }
    }

    int ans = 0;
    rep(d, 0, 10){
        ans += dp[N][d];
        ans %= mod;
    }
    cout << ans << endl;

    return 0;
}
0