結果

問題 No.1011 Infinite Stairs
ユーザー SSRSSSRS
提出日時 2020-11-07 11:09:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 237 ms / 2,000 ms
コード長 514 bytes
コンパイル時間 779 ms
コンパイル使用メモリ 72,888 KB
実行使用メモリ 215,808 KB
最終ジャッジ日時 2024-07-17 12:14:52
合計ジャッジ時間 3,126 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 9 ms
9,472 KB
testcase_03 AC 159 ms
143,232 KB
testcase_04 AC 237 ms
215,808 KB
testcase_05 AC 234 ms
215,808 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 31 ms
28,288 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 9 ms
10,368 KB
testcase_11 AC 99 ms
91,008 KB
testcase_12 AC 5 ms
6,940 KB
testcase_13 AC 53 ms
49,408 KB
testcase_14 AC 6 ms
6,944 KB
testcase_15 AC 36 ms
32,896 KB
testcase_16 AC 165 ms
150,656 KB
testcase_17 AC 174 ms
160,512 KB
testcase_18 AC 73 ms
65,664 KB
testcase_19 AC 3 ms
6,940 KB
testcase_20 AC 9 ms
8,832 KB
testcase_21 AC 40 ms
36,992 KB
testcase_22 AC 145 ms
135,680 KB
testcase_23 AC 38 ms
35,200 KB
testcase_24 AC 38 ms
34,176 KB
testcase_25 AC 72 ms
65,152 KB
testcase_26 AC 20 ms
18,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
const long long MOD = 1000000007;
int main(){
	int N, d, K;
	cin >> N >> d >> K;
	vector<vector<long long>> dp(N + 1, vector<long long>(N * d + 2, 0));
	dp[0][0] = 1;
	for (int i = 0; i < N; i++){
		for (int j = 0; j <= i * d; j++){
			dp[i + 1][j + 1] += dp[i][j];
			dp[i + 1][j + d + 1] += MOD - dp[i][j];
		}
		for (int j = 0; j <= (i + 1) * d; j++){
			dp[i + 1][j + 1] += dp[i + 1][j];
			dp[i + 1][j + 1] %= MOD;
		}
	}
	cout << dp[N][K] << endl;
}
0