結果

問題 No.741 AscNumber(Easy)
ユーザー ikeyanabcd894ikeyanabcd894
提出日時 2019-04-27 16:44:31
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 872 ms / 2,000 ms
コード長 400 bytes
コンパイル時間 2,281 ms
コンパイル使用メモリ 157,636 KB
実行使用メモリ 97,280 KB
最終ジャッジ日時 2024-05-06 09:09:28
合計ジャッジ時間 14,448 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 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 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 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 2 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 825 ms
92,672 KB
testcase_36 AC 360 ms
42,240 KB
testcase_37 AC 421 ms
49,280 KB
testcase_38 AC 416 ms
48,512 KB
testcase_39 AC 351 ms
41,600 KB
testcase_40 AC 481 ms
55,296 KB
testcase_41 AC 754 ms
84,864 KB
testcase_42 AC 397 ms
46,464 KB
testcase_43 AC 287 ms
34,560 KB
testcase_44 AC 591 ms
67,200 KB
testcase_45 AC 635 ms
72,192 KB
testcase_46 AC 820 ms
88,320 KB
testcase_47 AC 133 ms
17,664 KB
testcase_48 AC 785 ms
88,320 KB
testcase_49 AC 655 ms
74,368 KB
testcase_50 AC 92 ms
13,056 KB
testcase_51 AC 302 ms
35,968 KB
testcase_52 AC 865 ms
97,152 KB
testcase_53 AC 872 ms
97,280 KB
testcase_54 AC 823 ms
96,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int N;
long long memo[1000009][12];
long long mod=1000000007;

int main(){
  cin >> N;
  for(int i=0;i<=9;i++){memo[0][i]=1;}
  for(int i=1;i<N;i++){
    for(int j=0;j<=9;j++){
      for(int k=j;k>=0;k--){memo[i][j]=(memo[i][j]+memo[i-1][k])%mod;}
    }
  }
  long long ans=0;
  for(int i=0;i<=9;i++){ans=(ans+memo[N-1][i])%mod;}
  cout << ans << endl;
}
0