結果

問題 No.1011 Infinite Stairs
ユーザー brthyyjpbrthyyjp
提出日時 2020-03-22 01:17:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,128 ms / 2,000 ms
コード長 418 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,700 KB
実行使用メモリ 489,936 KB
最終ジャッジ日時 2024-07-17 12:00:58
合計ジャッジ時間 6,382 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,656 KB
testcase_01 AC 37 ms
52,760 KB
testcase_02 AC 70 ms
80,568 KB
testcase_03 AC 771 ms
363,992 KB
testcase_04 AC 167 ms
125,212 KB
testcase_05 AC 1,128 ms
489,936 KB
testcase_06 AC 35 ms
52,944 KB
testcase_07 AC 58 ms
77,444 KB
testcase_08 AC 36 ms
53,132 KB
testcase_09 AC 42 ms
60,200 KB
testcase_10 AC 56 ms
76,756 KB
testcase_11 AC 186 ms
135,128 KB
testcase_12 AC 50 ms
71,996 KB
testcase_13 AC 133 ms
111,100 KB
testcase_14 AC 46 ms
64,716 KB
testcase_15 AC 158 ms
123,920 KB
testcase_16 AC 539 ms
264,540 KB
testcase_17 AC 97 ms
91,828 KB
testcase_18 AC 350 ms
220,260 KB
testcase_19 AC 51 ms
73,164 KB
testcase_20 AC 46 ms
66,140 KB
testcase_21 AC 172 ms
134,120 KB
testcase_22 AC 289 ms
185,964 KB
testcase_23 AC 201 ms
153,012 KB
testcase_24 AC 213 ms
151,340 KB
testcase_25 AC 312 ms
196,708 KB
testcase_26 AC 100 ms
95,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [[0]*(k+1) for i in range(n+1)]
dp[0][0] = 1

from itertools import accumulate

for i in range(n):
    cum = [0]*(k+2)
    for j in range(k):
        cum[j+1] += dp[i][j]%mod
        if j+d <= k:
            cum[j+d+1] -= dp[i][j]%mod
        else:
            cum[-1] -= dp[i][j]%mod
    cum = list(accumulate(cum))
    dp[i+1] = cum[0:k+2]
print(dp[n][k]%mod)
0