結果

問題 No.1011 Infinite Stairs
ユーザー AEnAEn
提出日時 2022-05-17 15:41:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 772 ms / 2,000 ms
コード長 407 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 271,104 KB
最終ジャッジ日時 2024-09-15 10:21:39
合計ジャッジ時間 5,565 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 73 ms
66,688 KB
testcase_03 AC 533 ms
202,496 KB
testcase_04 AC 169 ms
93,312 KB
testcase_05 AC 772 ms
271,104 KB
testcase_06 AC 40 ms
51,840 KB
testcase_07 AC 61 ms
64,384 KB
testcase_08 AC 40 ms
51,584 KB
testcase_09 AC 47 ms
60,032 KB
testcase_10 AC 59 ms
63,616 KB
testcase_11 AC 181 ms
93,428 KB
testcase_12 AC 56 ms
63,744 KB
testcase_13 AC 136 ms
92,768 KB
testcase_14 AC 56 ms
61,952 KB
testcase_15 AC 151 ms
93,312 KB
testcase_16 AC 420 ms
161,664 KB
testcase_17 AC 98 ms
72,576 KB
testcase_18 AC 259 ms
120,064 KB
testcase_19 AC 59 ms
62,464 KB
testcase_20 AC 54 ms
61,696 KB
testcase_21 AC 144 ms
86,144 KB
testcase_22 AC 242 ms
110,080 KB
testcase_23 AC 155 ms
90,752 KB
testcase_24 AC 159 ms
92,416 KB
testcase_25 AC 234 ms
112,640 KB
testcase_26 AC 93 ms
72,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate

N, d, K = map(int, input().split())
mod = 10**9+7

dp = [[0]*(K+2) for _ in range(N+1)]
dp[0][0] = 1
for i in range(1, N+1):
    for j in range(K+1):
        if dp[i-1][j] > 0 and j+1<=K:
            dp[i][j+1] += dp[i-1][j]
            dp[i][min(j+d+1, K+1)] -= dp[i-1][j]
    for k in range(1,K+1):
        dp[i][k] += dp[i][k-1]
        dp[i][k] %= mod
print(dp[-1][-2])
0