結果

問題 No.741 AscNumber(Easy)
ユーザー misora192misora192
提出日時 2020-07-23 23:06:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 191 ms / 2,000 ms
コード長 652 bytes
コンパイル時間 1,958 ms
コンパイル使用メモリ 172,268 KB
実行使用メモリ 120,396 KB
最終ジャッジ日時 2024-06-23 22:06:51
合計ジャッジ時間 5,631 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,944 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 167 ms
114,972 KB
testcase_36 AC 73 ms
51,840 KB
testcase_37 AC 85 ms
60,464 KB
testcase_38 AC 87 ms
59,720 KB
testcase_39 AC 75 ms
50,884 KB
testcase_40 AC 97 ms
68,040 KB
testcase_41 AC 151 ms
104,992 KB
testcase_42 AC 82 ms
57,192 KB
testcase_43 AC 59 ms
42,212 KB
testcase_44 AC 119 ms
83,024 KB
testcase_45 AC 129 ms
89,224 KB
testcase_46 AC 165 ms
109,504 KB
testcase_47 AC 29 ms
21,196 KB
testcase_48 AC 172 ms
109,444 KB
testcase_49 AC 133 ms
92,012 KB
testcase_50 AC 19 ms
15,360 KB
testcase_51 AC 63 ms
44,196 KB
testcase_52 AC 191 ms
120,396 KB
testcase_53 AC 185 ms
120,372 KB
testcase_54 AC 179 ms
119,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=(0);i<(n);i++)

using namespace std;

typedef long long ll;

template<class T> bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T> bool chmin(T &a, const T &b) { if (a>b) { a=b; return 1; } return 0; }

int main(){
	cin.tie(0);
	ios::sync_with_stdio(false);

	ll MOD = 1e9 + 7;

	ll n;
	cin >> n;

	vector<vector<ll>> dp(n+2, vector<ll>(10, 0));
	rep(i, 9) dp[0][i+1] = 1;

	rep(i, n){
		rep(j, 10){
			dp[i+1][j+1] = dp[i+1][j] + dp[i][j+1];
			dp[i+1][j+1] %= MOD;
		}
	}

	ll ans = 1;
	rep(i, n){
		ans += dp[i+1][9];
		ans %= MOD;
	}

	cout << ans << endl;
}
0