結果

問題 No.741 AscNumber(Easy)
ユーザー knhrknhr
提出日時 2018-10-13 15:32:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 29 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 498 ms
コンパイル使用メモリ 64,740 KB
実行使用メモリ 42,552 KB
最終ジャッジ日時 2024-10-12 18:04:02
合計ジャッジ時間 1,866 ms
ジャッジサーバーID
(参考情報)
judge1 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 1 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 1 ms
6,816 KB
testcase_11 AC 1 ms
6,816 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 1 ms
6,816 KB
testcase_14 AC 1 ms
6,816 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 1 ms
6,816 KB
testcase_18 AC 1 ms
6,816 KB
testcase_19 AC 1 ms
6,816 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 1 ms
6,820 KB
testcase_22 AC 1 ms
6,820 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 2 ms
6,820 KB
testcase_25 AC 1 ms
6,816 KB
testcase_26 AC 1 ms
6,820 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 1 ms
6,816 KB
testcase_29 AC 1 ms
6,820 KB
testcase_30 AC 2 ms
6,816 KB
testcase_31 AC 2 ms
6,820 KB
testcase_32 AC 1 ms
6,816 KB
testcase_33 AC 1 ms
6,816 KB
testcase_34 AC 2 ms
6,820 KB
testcase_35 AC 29 ms
40,744 KB
testcase_36 AC 14 ms
21,608 KB
testcase_37 AC 16 ms
22,932 KB
testcase_38 AC 14 ms
23,108 KB
testcase_39 AC 12 ms
19,672 KB
testcase_40 AC 16 ms
26,644 KB
testcase_41 AC 24 ms
37,572 KB
testcase_42 AC 15 ms
22,700 KB
testcase_43 AC 10 ms
16,744 KB
testcase_44 AC 19 ms
30,808 KB
testcase_45 AC 23 ms
32,720 KB
testcase_46 AC 26 ms
38,952 KB
testcase_47 AC 7 ms
10,300 KB
testcase_48 AC 25 ms
39,204 KB
testcase_49 AC 22 ms
33,192 KB
testcase_50 AC 4 ms
8,424 KB
testcase_51 AC 10 ms
18,004 KB
testcase_52 AC 29 ms
42,552 KB
testcase_53 AC 29 ms
42,456 KB
testcase_54 AC 29 ms
41,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;
int n;
int dp[1000010][10];

int main()
{	
	int mod=1e9+7;
	cin >> n;
	
	for(int j=0;j<10;j++)
		dp[1][j]=j+1;
	for(int i=1;i<=n;i++)
		dp[i][0]=1;
	
	for(int i=2;i<=n;i++)
	{
		for(int j=1;j<10;j++)
		{
			dp[i][j]=dp[i-1][j]+dp[i][j-1];
			dp[i][j]%=mod;
		}
	}
	cout << dp[n][9] << endl;
	return 0;
}
0