結果

問題 No.1011 Infinite Stairs
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-03-20 22:13:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 520 ms / 2,000 ms
コード長 320 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 248,892 KB
最終ジャッジ日時 2024-07-17 11:51:04
合計ジャッジ時間 4,156 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,148 KB
testcase_01 AC 37 ms
51,880 KB
testcase_02 AC 57 ms
66,552 KB
testcase_03 AC 357 ms
204,400 KB
testcase_04 AC 95 ms
75,696 KB
testcase_05 AC 520 ms
248,892 KB
testcase_06 AC 35 ms
52,780 KB
testcase_07 AC 53 ms
63,828 KB
testcase_08 AC 37 ms
51,880 KB
testcase_09 AC 44 ms
60,340 KB
testcase_10 AC 51 ms
64,020 KB
testcase_11 AC 102 ms
76,016 KB
testcase_12 AC 51 ms
63,212 KB
testcase_13 AC 83 ms
75,396 KB
testcase_14 AC 47 ms
60,544 KB
testcase_15 AC 94 ms
76,108 KB
testcase_16 AC 265 ms
162,732 KB
testcase_17 AC 66 ms
71,804 KB
testcase_18 AC 173 ms
120,844 KB
testcase_19 AC 51 ms
63,060 KB
testcase_20 AC 45 ms
62,016 KB
testcase_21 AC 100 ms
85,940 KB
testcase_22 AC 153 ms
110,200 KB
testcase_23 AC 111 ms
90,384 KB
testcase_24 AC 117 ms
91,832 KB
testcase_25 AC 158 ms
113,272 KB
testcase_26 AC 67 ms
73,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, d, K = map(int, input().split())
mod = 10**9 + 7
dp = [0]*(K+2)
dp[0] = 1
for _ in range(N):
    dp2 = [0] * (K+2)
    for i in range(K, -1, -1):
        dp2[min(i+1, K+1)] += dp[i]
        dp2[min(i+d+1, K+1)] -= dp[i]
    for i in range(1, K+2):
        dp2[i] = (dp2[i] + dp2[i-1])%mod
    dp = dp2

print(dp2[K])
0