結果

問題 No.1011 Infinite Stairs
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-03-30 23:45:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 530 ms / 2,000 ms
コード長 352 bytes
コンパイル時間 472 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 249,132 KB
最終ジャッジ日時 2024-11-15 15:47:19
合計ジャッジ時間 4,566 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 59 ms
66,432 KB
testcase_03 AC 371 ms
205,440 KB
testcase_04 AC 100 ms
75,952 KB
testcase_05 AC 530 ms
249,132 KB
testcase_06 AC 37 ms
51,456 KB
testcase_07 AC 55 ms
64,512 KB
testcase_08 AC 37 ms
51,584 KB
testcase_09 AC 45 ms
60,160 KB
testcase_10 AC 53 ms
63,616 KB
testcase_11 AC 103 ms
76,160 KB
testcase_12 AC 52 ms
63,488 KB
testcase_13 AC 87 ms
75,440 KB
testcase_14 AC 49 ms
60,672 KB
testcase_15 AC 95 ms
76,160 KB
testcase_16 AC 271 ms
162,944 KB
testcase_17 AC 69 ms
72,576 KB
testcase_18 AC 178 ms
119,916 KB
testcase_19 AC 53 ms
62,976 KB
testcase_20 AC 48 ms
61,184 KB
testcase_21 AC 103 ms
86,272 KB
testcase_22 AC 156 ms
110,336 KB
testcase_23 AC 115 ms
91,008 KB
testcase_24 AC 119 ms
92,800 KB
testcase_25 AC 163 ms
112,896 KB
testcase_26 AC 72 ms
73,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [0]*(k+2)
dp[0] = 1
for i in range(n):
    ndp = [0]*(k+2)
    for j in range(k+1):
        if j:
            dp[j] += dp[j-1]
            dp[j] %= mod
        ndp[j+1] += dp[j]
        ndp[j+1] %= mod
        ndp[min(k+1,j+d+1)] -= dp[j]
        ndp[min(k+1,j+d+1)] %= mod
    dp = ndp
print(dp[k])
0