結果

問題 No.741 AscNumber(Easy)
ユーザー momotaro1303momotaro1303
提出日時 2019-09-23 22:07:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 237 ms / 2,000 ms
コード長 461 bytes
コンパイル時間 1,597 ms
コンパイル使用メモリ 167,092 KB
実行使用メモリ 81,664 KB
最終ジャッジ日時 2024-09-19 04:37:15
合計ジャッジ時間 5,991 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 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 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 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 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 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 2 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 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 226 ms
77,952 KB
testcase_36 AC 99 ms
35,968 KB
testcase_37 AC 116 ms
41,600 KB
testcase_38 AC 116 ms
41,088 KB
testcase_39 AC 98 ms
35,328 KB
testcase_40 AC 131 ms
46,720 KB
testcase_41 AC 205 ms
71,296 KB
testcase_42 AC 110 ms
39,296 KB
testcase_43 AC 81 ms
29,312 KB
testcase_44 AC 162 ms
56,576 KB
testcase_45 AC 175 ms
60,672 KB
testcase_46 AC 215 ms
74,368 KB
testcase_47 AC 38 ms
15,360 KB
testcase_48 AC 218 ms
74,368 KB
testcase_49 AC 179 ms
62,592 KB
testcase_50 AC 27 ms
11,392 KB
testcase_51 AC 85 ms
30,720 KB
testcase_52 AC 237 ms
81,664 KB
testcase_53 AC 237 ms
81,664 KB
testcase_54 AC 236 ms
80,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll mod=1e9+7;

int N;
ll dp[1000005][10];
ll ans;

int main(){ 

cin.tie(0);
ios::sync_with_stdio(false);

cin>>N;

for(int j=1; j<=9; j++){
	dp[1][j]++;
}
for(int i=2; i<=N; i++){
	for(int j=1; j<=9; j++){
		for(int k=1; k<=j; k++){
			dp[i][j]=(dp[i][j]+dp[i-1][k])%mod;
		}
	}
}
for(int i=1; i<=N; i++){
	for(int j=1; j<=9; j++){
		ans=(ans+dp[i][j])%mod;
	}
}

cout<<ans+1<<endl;

}
0