結果

問題 No.741 AscNumber(Easy)
ユーザー Y17Y17
提出日時 2018-10-05 22:25:51
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 351 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 1,594 ms
コンパイル使用メモリ 157,912 KB
実行使用メモリ 104,832 KB
最終ジャッジ日時 2024-10-12 13:15:39
合計ジャッジ時間 7,778 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
42,356 KB
testcase_01 AC 12 ms
42,356 KB
testcase_02 AC 12 ms
42,456 KB
testcase_03 AC 12 ms
42,452 KB
testcase_04 AC 12 ms
42,472 KB
testcase_05 AC 12 ms
42,352 KB
testcase_06 AC 12 ms
42,256 KB
testcase_07 AC 12 ms
42,496 KB
testcase_08 AC 12 ms
42,516 KB
testcase_09 AC 12 ms
42,412 KB
testcase_10 AC 12 ms
42,408 KB
testcase_11 AC 12 ms
42,428 KB
testcase_12 AC 12 ms
42,284 KB
testcase_13 AC 12 ms
42,388 KB
testcase_14 AC 13 ms
42,476 KB
testcase_15 AC 13 ms
42,420 KB
testcase_16 AC 12 ms
42,368 KB
testcase_17 AC 12 ms
42,380 KB
testcase_18 AC 12 ms
42,536 KB
testcase_19 AC 12 ms
42,432 KB
testcase_20 AC 12 ms
42,432 KB
testcase_21 AC 11 ms
42,540 KB
testcase_22 AC 12 ms
42,512 KB
testcase_23 AC 13 ms
42,328 KB
testcase_24 AC 11 ms
42,480 KB
testcase_25 AC 11 ms
42,540 KB
testcase_26 AC 13 ms
42,376 KB
testcase_27 AC 12 ms
42,504 KB
testcase_28 AC 12 ms
42,400 KB
testcase_29 AC 12 ms
42,500 KB
testcase_30 AC 12 ms
42,448 KB
testcase_31 AC 12 ms
42,364 KB
testcase_32 AC 12 ms
42,472 KB
testcase_33 AC 12 ms
42,452 KB
testcase_34 AC 12 ms
42,452 KB
testcase_35 AC 330 ms
101,884 KB
testcase_36 AC 155 ms
68,372 KB
testcase_37 AC 182 ms
72,828 KB
testcase_38 AC 175 ms
72,492 KB
testcase_39 AC 149 ms
67,796 KB
testcase_40 AC 195 ms
77,128 KB
testcase_41 AC 302 ms
96,720 KB
testcase_42 AC 163 ms
71,112 KB
testcase_43 AC 123 ms
63,200 KB
testcase_44 AC 239 ms
84,952 KB
testcase_45 AC 260 ms
88,256 KB
testcase_46 AC 318 ms
99,024 KB
testcase_47 AC 64 ms
52,036 KB
testcase_48 AC 318 ms
99,044 KB
testcase_49 AC 268 ms
89,696 KB
testcase_50 AC 47 ms
48,928 KB
testcase_51 AC 131 ms
64,232 KB
testcase_52 AC 347 ms
104,832 KB
testcase_53 AC 351 ms
104,816 KB
testcase_54 AC 342 ms
104,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define MOD 1000000007

int n;
int memo[1000010][10];

int dfs(int i, int j){
  if(i == n){
    return 1;
  }

  if(memo[i][j] != -1) return memo[i][j];

  long long ans = 0;
  for(int k = j;k <= 9;k++){
    ans = (ans + dfs(i+1,k)) % MOD;
  }

  return memo[i][j] = ans;
}


int main(){
  cin >> n;
  memset(memo,-1,sizeof(memo));
  cout << dfs(0, 0) << endl;
  return 0;
}
0