結果

問題 No.741 AscNumber(Easy)
ユーザー sten_sansten_san
提出日時 2021-01-31 16:37:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 916 bytes
コンパイル時間 1,892 ms
コンパイル使用メモリ 202,932 KB
実行使用メモリ 81,280 KB
最終ジャッジ日時 2024-06-29 01:22:57
合計ジャッジ時間 4,158 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 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 1 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 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 1 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 1 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 1 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 48 ms
77,644 KB
testcase_36 AC 21 ms
35,680 KB
testcase_37 AC 24 ms
41,536 KB
testcase_38 AC 23 ms
40,808 KB
testcase_39 AC 18 ms
34,984 KB
testcase_40 AC 25 ms
46,484 KB
testcase_41 AC 46 ms
71,216 KB
testcase_42 AC 23 ms
39,168 KB
testcase_43 AC 16 ms
29,220 KB
testcase_44 AC 31 ms
56,356 KB
testcase_45 AC 56 ms
60,544 KB
testcase_46 AC 48 ms
73,984 KB
testcase_47 AC 10 ms
15,232 KB
testcase_48 AC 49 ms
74,088 KB
testcase_49 AC 39 ms
62,392 KB
testcase_50 AC 7 ms
11,192 KB
testcase_51 AC 17 ms
30,476 KB
testcase_52 AC 55 ms
81,280 KB
testcase_53 AC 56 ms
81,280 KB
testcase_54 AC 54 ms
80,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

struct uns_t {} uns;
template <typename Element, typename Head, typename ...Args>
auto vec(Element init, Head arg, Args ...args) {
    if constexpr (sizeof...(Args) == 0) return std::vector(arg, init);
    else return std::vector(arg, vec(init, args...));
}
template <typename Element, typename Head, typename ...Args>
auto vec(uns_t, Head arg, Args ...args) {
    return vec(Element(), arg, args...);
}

int main() {
    constexpr int64_t mod = 1e9 + 7;

    int n; cin >> n;

    auto dp = vec<array<int64_t, 10>>(uns, n + 1);
    dp[0][0] = 1;
    for (int i = 1; i <= n; ++i) {
        int64_t sum = 0;
        for (int j = 0; j <= 9; ++j) {
            sum += dp[i - 1][j];
            sum %= mod;
            dp[i][j] = sum;
        }
    }

    int64_t ans = 0;
    for (auto e : dp[n]) {
        ans += e;
        ans %= mod;
    }

    cout << ans << endl;
}

0