結果

問題 No.741 AscNumber(Easy)
ユーザー RTIA1227RTIA1227
提出日時 2018-10-05 21:36:18
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 265 ms / 2,000 ms
コード長 907 bytes
コンパイル時間 978 ms
コンパイル使用メモリ 101,672 KB
実行使用メモリ 120,228 KB
最終ジャッジ日時 2023-08-02 16:57:08
合計ジャッジ時間 6,152 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 1 ms
4,376 KB
testcase_12 AC 1 ms
4,376 KB
testcase_13 AC 2 ms
4,376 KB
testcase_14 AC 1 ms
4,376 KB
testcase_15 AC 2 ms
4,380 KB
testcase_16 AC 2 ms
4,376 KB
testcase_17 AC 1 ms
4,380 KB
testcase_18 AC 2 ms
4,376 KB
testcase_19 AC 2 ms
4,380 KB
testcase_20 AC 2 ms
4,380 KB
testcase_21 AC 2 ms
4,376 KB
testcase_22 AC 2 ms
4,376 KB
testcase_23 AC 2 ms
4,376 KB
testcase_24 AC 2 ms
4,376 KB
testcase_25 AC 2 ms
4,376 KB
testcase_26 AC 1 ms
4,376 KB
testcase_27 AC 2 ms
4,380 KB
testcase_28 AC 2 ms
4,380 KB
testcase_29 AC 2 ms
4,376 KB
testcase_30 AC 2 ms
4,376 KB
testcase_31 AC 2 ms
4,376 KB
testcase_32 AC 2 ms
4,380 KB
testcase_33 AC 2 ms
4,380 KB
testcase_34 AC 2 ms
4,376 KB
testcase_35 AC 253 ms
114,832 KB
testcase_36 AC 112 ms
51,532 KB
testcase_37 AC 131 ms
60,244 KB
testcase_38 AC 130 ms
59,568 KB
testcase_39 AC 109 ms
50,788 KB
testcase_40 AC 150 ms
67,908 KB
testcase_41 AC 230 ms
104,836 KB
testcase_42 AC 123 ms
57,116 KB
testcase_43 AC 89 ms
42,236 KB
testcase_44 AC 183 ms
82,808 KB
testcase_45 AC 195 ms
89,232 KB
testcase_46 AC 237 ms
109,412 KB
testcase_47 AC 43 ms
20,896 KB
testcase_48 AC 240 ms
109,264 KB
testcase_49 AC 201 ms
91,744 KB
testcase_50 AC 30 ms
15,200 KB
testcase_51 AC 94 ms
44,084 KB
testcase_52 AC 265 ms
120,036 KB
testcase_53 AC 264 ms
120,228 KB
testcase_54 AC 259 ms
119,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<functional>
#include<queue>
#include<stack>
#include<set>
#include<map>
#include<unordered_map>
#include<climits>
#include<cstdlib>
#include<cmath>
#include<string>
#include<iomanip>

using namespace std;

#define INF 1 << 29
#define LL long long int

LL const MOD = 1000000007;

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

    LL n;
    cin >> n;

    vector<vector<LL>> dp(n,vector<LL>(10,0));

    for(int i = 0; i < 10; i++){
        dp[n-1][i] = 1;
    }

    for(int i = n-2; i >= 0; i--){
        for(int j = 0; j < 10; j++){
            for(int k = 0; k <= j; k++){
                dp[i][j] += dp[i+1][k];
                dp[i][j] %= MOD;
            }
        }
    }

    LL ans = 0;
    for(int i = 0; i < 10; i++){
        ans += dp[0][i];
        ans %= MOD;
    }

    cout << ans << endl;
    
    return 0;
}
0