結果

問題 No.741 AscNumber(Easy)
ユーザー satou_a_mansatou_a_man
提出日時 2018-11-04 16:00:21
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 697 bytes
コンパイル時間 1,059 ms
コンパイル使用メモリ 160,200 KB
実行使用メモリ 120,556 KB
最終ジャッジ日時 2024-11-20 19:58:05
合計ジャッジ時間 5,819 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
42,368 KB
testcase_01 AC 11 ms
42,412 KB
testcase_02 AC 11 ms
42,416 KB
testcase_03 AC 11 ms
42,404 KB
testcase_04 AC 11 ms
42,436 KB
testcase_05 AC 11 ms
42,440 KB
testcase_06 AC 11 ms
42,228 KB
testcase_07 AC 10 ms
42,380 KB
testcase_08 AC 10 ms
42,472 KB
testcase_09 AC 11 ms
42,252 KB
testcase_10 AC 11 ms
42,376 KB
testcase_11 AC 10 ms
42,264 KB
testcase_12 AC 10 ms
42,420 KB
testcase_13 AC 10 ms
42,256 KB
testcase_14 AC 10 ms
42,388 KB
testcase_15 AC 10 ms
42,360 KB
testcase_16 AC 11 ms
42,232 KB
testcase_17 AC 10 ms
42,424 KB
testcase_18 AC 10 ms
42,392 KB
testcase_19 AC 11 ms
42,372 KB
testcase_20 AC 11 ms
42,380 KB
testcase_21 AC 11 ms
42,376 KB
testcase_22 AC 11 ms
42,432 KB
testcase_23 AC 10 ms
42,348 KB
testcase_24 AC 10 ms
42,268 KB
testcase_25 AC 10 ms
42,404 KB
testcase_26 AC 10 ms
42,296 KB
testcase_27 AC 11 ms
42,380 KB
testcase_28 AC 10 ms
42,416 KB
testcase_29 AC 10 ms
42,476 KB
testcase_30 AC 12 ms
42,416 KB
testcase_31 AC 11 ms
42,416 KB
testcase_32 AC 10 ms
42,468 KB
testcase_33 AC 10 ms
42,400 KB
testcase_34 AC 11 ms
42,324 KB
testcase_35 AC 228 ms
116,844 KB
testcase_36 AC 104 ms
74,808 KB
testcase_37 AC 118 ms
80,600 KB
testcase_38 AC 117 ms
80,036 KB
testcase_39 AC 105 ms
74,188 KB
testcase_40 AC 134 ms
85,596 KB
testcase_41 AC 207 ms
110,352 KB
testcase_42 AC 115 ms
78,244 KB
testcase_43 AC 85 ms
68,400 KB
testcase_44 AC 164 ms
95,548 KB
testcase_45 AC 176 ms
99,688 KB
testcase_46 AC 214 ms
113,228 KB
testcase_47 AC 47 ms
54,340 KB
testcase_48 AC 217 ms
113,200 KB
testcase_49 AC 227 ms
101,572 KB
testcase_50 AC 33 ms
50,408 KB
testcase_51 AC 88 ms
69,712 KB
testcase_52 AC 235 ms
120,540 KB
testcase_53 AC 234 ms
120,556 KB
testcase_54 AC 230 ms
119,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <unordered_set>
using namespace std;
#define ll long long
#define rep(i,n) for(int (i)=0;(i)<(n);(i)++)
#define repeat(i,s,n) for(int (i)=s; (i)<(n); (i)++)
#define revrep(i,n) for(int (i)=(n)-1;i>=0; i--)

const ll p = 1e9+7;
int memo[10][1000000+1];

int rec(int prev, int n) {
  if(memo[prev][n]>=0) return memo[prev][n];
  if(n==0) return 1;
  ll ans=0;
  repeat(i,prev,10) {
    ans+=rec(i,n-1);
    ans%=p;
  }
  return memo[prev][n]=ans;
}

int main() {
  cin.tie(0);
  ios::sync_with_stdio(false);
  cout<<setprecision(std::numeric_limits<float>::max_digits10);
  int n;
  cin>>n;
  memset(memo,-1,sizeof(memo));
  cout << rec(0,n) << endl;
  return 0;
}
0