結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 1 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 1 ms
6,816 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 1 ms
6,816 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 3 ms
6,820 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 2 ms
6,820 KB
testcase_25 AC 2 ms
6,820 KB
testcase_26 AC 2 ms
6,816 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 2 ms
6,820 KB
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 2 ms
6,820 KB
testcase_31 AC 2 ms
6,816 KB
testcase_32 AC 2 ms
6,816 KB
testcase_33 AC 3 ms
6,816 KB
testcase_34 AC 3 ms
6,820 KB
testcase_35 AC 827 ms
92,800 KB
testcase_36 AC 361 ms
42,240 KB
testcase_37 AC 425 ms
49,152 KB
testcase_38 AC 417 ms
48,640 KB
testcase_39 AC 354 ms
41,472 KB
testcase_40 AC 485 ms
55,040 KB
testcase_41 AC 752 ms
84,864 KB
testcase_42 AC 400 ms
46,464 KB
testcase_43 AC 295 ms
34,560 KB
testcase_44 AC 598 ms
67,200 KB
testcase_45 AC 638 ms
72,192 KB
testcase_46 AC 791 ms
88,448 KB
testcase_47 AC 136 ms
17,664 KB
testcase_48 AC 785 ms
88,320 KB
testcase_49 AC 657 ms
74,368 KB
testcase_50 AC 91 ms
12,800 KB
testcase_51 AC 305 ms
36,096 KB
testcase_52 AC 865 ms
97,024 KB
testcase_53 AC 869 ms
97,152 KB
testcase_54 AC 858 ms
96,256 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