結果

問題 No.741 AscNumber(Easy)
ユーザー simansiman
提出日時 2021-12-15 06:01:47
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 708 bytes
コンパイル時間 3,546 ms
コンパイル使用メモリ 140,156 KB
実行使用メモリ 81,536 KB
最終ジャッジ日時 2024-07-23 19:54:06
合計ジャッジ時間 10,180 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
81,536 KB
testcase_01 AC 61 ms
81,408 KB
testcase_02 AC 61 ms
81,408 KB
testcase_03 AC 61 ms
81,408 KB
testcase_04 AC 60 ms
81,408 KB
testcase_05 AC 61 ms
81,408 KB
testcase_06 AC 62 ms
81,408 KB
testcase_07 AC 62 ms
81,408 KB
testcase_08 AC 61 ms
81,408 KB
testcase_09 AC 61 ms
81,536 KB
testcase_10 AC 61 ms
81,408 KB
testcase_11 AC 63 ms
81,536 KB
testcase_12 AC 63 ms
81,408 KB
testcase_13 AC 62 ms
81,408 KB
testcase_14 AC 60 ms
81,536 KB
testcase_15 AC 62 ms
81,408 KB
testcase_16 AC 61 ms
81,408 KB
testcase_17 AC 61 ms
81,408 KB
testcase_18 AC 62 ms
81,536 KB
testcase_19 AC 61 ms
81,408 KB
testcase_20 AC 62 ms
81,536 KB
testcase_21 AC 61 ms
81,536 KB
testcase_22 AC 61 ms
81,408 KB
testcase_23 AC 61 ms
81,536 KB
testcase_24 AC 61 ms
81,408 KB
testcase_25 AC 61 ms
81,408 KB
testcase_26 AC 61 ms
81,408 KB
testcase_27 AC 61 ms
81,536 KB
testcase_28 AC 61 ms
81,408 KB
testcase_29 AC 61 ms
81,408 KB
testcase_30 AC 61 ms
81,408 KB
testcase_31 AC 61 ms
81,408 KB
testcase_32 AC 62 ms
81,408 KB
testcase_33 AC 62 ms
81,408 KB
testcase_34 AC 62 ms
81,536 KB
testcase_35 AC 191 ms
81,408 KB
testcase_36 AC 117 ms
81,536 KB
testcase_37 AC 127 ms
81,408 KB
testcase_38 AC 127 ms
81,536 KB
testcase_39 AC 117 ms
81,408 KB
testcase_40 AC 137 ms
81,408 KB
testcase_41 AC 179 ms
81,408 KB
testcase_42 AC 124 ms
81,408 KB
testcase_43 AC 106 ms
81,408 KB
testcase_44 AC 153 ms
81,408 KB
testcase_45 AC 161 ms
81,536 KB
testcase_46 AC 186 ms
81,536 KB
testcase_47 AC 82 ms
81,408 KB
testcase_48 AC 184 ms
81,536 KB
testcase_49 AC 165 ms
81,536 KB
testcase_50 AC 75 ms
81,408 KB
testcase_51 AC 111 ms
81,408 KB
testcase_52 AC 198 ms
81,536 KB
testcase_53 AC 198 ms
81,536 KB
testcase_54 AC 196 ms
81,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <climits>
#include <map>
#include <queue>
#include <set>
#include <cstring>
#include <vector>

using namespace std;
typedef long long ll;

const ll MOD = 1000000007;
ll dp[1000010][10];

int main() {
  int N;
  cin >> N;
  memset(dp, 0, sizeof(dp));

  for (int i = 1; i <= N; ++i) {
    for (int j = 0; j <= 9; ++j) {
      if (j != 0 || i == N) dp[i][j]++;

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

  ll ans = 0;

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

  cout << ans << endl;

  return 0;
}
0