結果

問題 No.741 AscNumber(Easy)
ユーザー peroonperoon
提出日時 2019-04-25 06:58:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 934 bytes
コンパイル時間 1,609 ms
コンパイル使用メモリ 166,152 KB
実行使用メモリ 81,536 KB
最終ジャッジ日時 2024-11-17 11:09:59
合計ジャッジ時間 4,945 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 1 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 1 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 1 ms
5,248 KB
testcase_33 AC 1 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 161 ms
77,824 KB
testcase_36 AC 71 ms
35,968 KB
testcase_37 AC 84 ms
41,600 KB
testcase_38 AC 83 ms
40,960 KB
testcase_39 AC 70 ms
35,200 KB
testcase_40 AC 96 ms
46,720 KB
testcase_41 AC 149 ms
71,424 KB
testcase_42 AC 79 ms
39,296 KB
testcase_43 AC 59 ms
29,440 KB
testcase_44 AC 117 ms
56,576 KB
testcase_45 AC 124 ms
60,672 KB
testcase_46 AC 151 ms
74,240 KB
testcase_47 AC 27 ms
15,360 KB
testcase_48 AC 150 ms
74,240 KB
testcase_49 AC 133 ms
62,592 KB
testcase_50 AC 20 ms
11,520 KB
testcase_51 AC 64 ms
30,720 KB
testcase_52 AC 176 ms
81,536 KB
testcase_53 AC 178 ms
81,536 KB
testcase_54 AC 168 ms
80,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define FOR(i,a,b) for(ll i=(a);i<(b);++i)
#define ALL(v) (v).begin(), (v).end()
#define p(s) cout<<(s)<<endl
#define p2(s, t) cout << (s) << " " << (t) << endl
#define br() p("")
#define pn(s) cout << (#s) << " " << (s) << endl
#define p_yes() p("Yes")
#define p_no() p("No")

const ll mod = 1e9 + 7;
const ll inf = 1e18;

// dp[i][j]
// i 桁まで確定
// j 最下位桁の値 (leftmost)
ll dp[1000010][10];

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

    // input
    ll N;
    cin >> N;

    FOR(i, 0, 10){
        dp[1][i] = 1;
    }

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

    ll sum = 0;
    FOR(i, 0, 10){
        sum += dp[N][i];
        sum %= mod;
    }

    p(sum);
    
    return 0;
}
0