結果

問題 No.1011 Infinite Stairs
ユーザー tatt61880tatt61880
提出日時 2021-04-12 21:12:51
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 1,421 ms / 2,000 ms
コード長 610 bytes
コンパイル時間 7,416 ms
コンパイル使用メモリ 147,444 KB
実行使用メモリ 216,320 KB
最終ジャッジ日時 2024-07-17 12:17:57
合計ジャッジ時間 9,400 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 21 ms
6,940 KB
testcase_03 AC 934 ms
143,744 KB
testcase_04 AC 159 ms
27,520 KB
testcase_05 AC 1,421 ms
216,320 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 12 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 9 ms
6,940 KB
testcase_11 AC 191 ms
32,384 KB
testcase_12 AC 7 ms
6,944 KB
testcase_13 AC 119 ms
21,376 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 152 ms
26,752 KB
testcase_16 AC 650 ms
101,632 KB
testcase_17 AC 57 ms
12,160 KB
testcase_18 AC 374 ms
60,288 KB
testcase_19 AC 7 ms
6,940 KB
testcase_20 AC 4 ms
6,940 KB
testcase_21 AC 154 ms
26,752 KB
testcase_22 AC 308 ms
49,792 KB
testcase_23 AC 187 ms
31,360 KB
testcase_24 AC 201 ms
34,048 KB
testcase_25 AC 329 ms
53,120 KB
testcase_26 AC 67 ms
13,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	const mod: int :: 1000000007
	var n: int :: cui@inputInt()
	var d: int :: cui@inputInt()
	var k: int :: cui@inputInt()
	; dp[i][j] = val
	; i: 移動した回数
	; j: 昇ったステップ
	; val: 通り数
	var dp: [][]int :: #[n + 1, k + 1]int
	do dp[0][0] :: 1
	var cum: []int :: #[k + 1]int
	for i(1, n)
		for j(1, k)
			do cum[j] :: cum[j - 1] + dp[i - 1][j - 1]
			; 「dp[i - 1][[j - d, 0].max()] ~ dp[i - 1][j - 1]」までの和。
			do dp[i][j] :: cum[j] - cum[[j - d, 0].max()]
			do dp[i][j] :% mod
		end for
	end for
	
	var ans: int :: dp[n][k]
	do cui@print("\{ans}\n")
end func
0