結果

問題 No.741 AscNumber(Easy)
ユーザー ooaiuooaiu
提出日時 2024-07-31 23:29:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 594 ms / 2,000 ms
コード長 2,081 bytes
コンパイル時間 5,314 ms
コンパイル使用メモリ 302,876 KB
実行使用メモリ 183,980 KB
最終ジャッジ日時 2024-07-31 23:29:50
合計ジャッジ時間 14,576 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 561 ms
175,520 KB
testcase_36 AC 237 ms
78,380 KB
testcase_37 AC 273 ms
91,684 KB
testcase_38 AC 296 ms
90,340 KB
testcase_39 AC 234 ms
76,912 KB
testcase_40 AC 317 ms
103,348 KB
testcase_41 AC 496 ms
160,424 KB
testcase_42 AC 288 ms
86,428 KB
testcase_43 AC 194 ms
63,364 KB
testcase_44 AC 388 ms
126,328 KB
testcase_45 AC 422 ms
136,012 KB
testcase_46 AC 540 ms
167,084 KB
testcase_47 AC 88 ms
30,976 KB
testcase_48 AC 505 ms
167,144 KB
testcase_49 AC 468 ms
140,168 KB
testcase_50 AC 65 ms
21,760 KB
testcase_51 AC 209 ms
66,520 KB
testcase_52 AC 570 ms
183,948 KB
testcase_53 AC 594 ms
183,980 KB
testcase_54 AC 555 ms
182,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// #undef _GLIBCXX_DEBUG
// #undef LOCAL

#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")

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

#if __has_include(<atcoder/all>)
#include <atcoder/all>
using namespace atcoder;
#endif

#ifdef LOCAL
#include "../algo/debug.hpp"
#else
#define debug(...) void(0)
#endif

constexpr int inf = (1<<30) - 1;
constexpr long long linf = (1LL<<60) - 1;
using ll = long long;
using ld = long double;
#define len(x) int((x).size())
#define all(x) begin(x), end(x)
#define rall(x) rbegin(x), rend(x)
#define LB(c, x) distance(begin(c), lower_bound(all(c), x))
#define UB(c, x) distance(begin(c), upper_bound(all(c), x))
template <typename T, typename S> inline auto min(const T& a, const S& b) { return(a < b ? a : b); }
template <typename T, typename S> inline auto max(const T& a, const S& b) { return(a > b ? a : b); }
template <typename T, typename S> inline bool chmax(T& a, const S& b) { return(a < b ? a = b, 1 : 0); }
template <typename T, typename S> inline bool chmin(T& a, const S& b) { return(a > b ? a = b, 1 : 0); }
// ------------------------------------------------------------------



void solve() {
    int N; cin >> N;
    string S = "";
    while(N--) S += '9';
    int n = len(S);
    using mint = modint1000000007;
    vector dp(n + 1, vector<vector<mint>>(2, vector<mint>(10, 0)));
    dp[0][0][0] = 1;
    for(int i = 0; i < n; i++) {
        for(int j = 0; j < 2; j++) {
            for(int k = 0; k < 10; k++) {
                int lim = j ? 9 : S[i] - '0';
                for(int d = 0; d <= lim; d++) {
                    if(k > d) continue;
                    dp[i + 1][j || d < lim][d] += dp[i][j][k];
                }
            }
        }
    }
    mint ans = 0;
    for(int i = 0; i < 2; i++) {
        for(int j = 0; j < 10; j++) {
            ans += dp[n][i][j];
        }
    }
    cout << ans.val() << endl;

}



int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    // fixed(cout).precision(12);
    int T = 1;
    // cin >> T;
    while(T--) {
        solve();
    }
}
0