結果

問題 No.1011 Infinite Stairs
ユーザー nagitaosunagitaosu
提出日時 2020-03-20 22:25:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 509 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 270,724 KB
最終ジャッジ日時 2024-12-15 06:41:55
合計ジャッジ時間 3,892 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,068 KB
testcase_01 AC 36 ms
53,616 KB
testcase_02 AC 51 ms
65,400 KB
testcase_03 AC 347 ms
199,672 KB
testcase_04 AC 98 ms
93,384 KB
testcase_05 AC 525 ms
270,724 KB
testcase_06 WA -
testcase_07 AC 48 ms
63,632 KB
testcase_08 WA -
testcase_09 AC 38 ms
59,080 KB
testcase_10 AC 42 ms
61,932 KB
testcase_11 AC 106 ms
93,364 KB
testcase_12 AC 42 ms
61,640 KB
testcase_13 AC 87 ms
92,840 KB
testcase_14 AC 41 ms
60,804 KB
testcase_15 AC 95 ms
92,988 KB
testcase_16 AC 259 ms
157,348 KB
testcase_17 AC 57 ms
70,036 KB
testcase_18 AC 166 ms
116,944 KB
testcase_19 AC 41 ms
62,292 KB
testcase_20 AC 41 ms
60,988 KB
testcase_21 AC 92 ms
84,144 KB
testcase_22 AC 143 ms
106,772 KB
testcase_23 AC 106 ms
87,400 KB
testcase_24 AC 112 ms
90,700 KB
testcase_25 AC 152 ms
110,064 KB
testcase_26 AC 66 ms
70,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys
input = sys.stdin.readline
MOD = 10**9 + 7

n, d, k = map(int, input().split())
k -= n
d -= 1
dp = [[0] * (k + 1) for _ in range(n)]
for i in range(min(k, d + 1)):
    dp[0][i] = 1
for i in range(n-1):
    for j in range(k+1):
        if j - 1 - d >= 0:
            dp[i + 1][j] = dp[i + 1][j-1] + dp[i][j] - dp[i][j - 1 - d]
            dp[i + 1][j] %= MOD
        else:
            dp[i + 1][j] = dp[i + 1][j-1] + dp[i][j]
            dp[i + 1][j] %= MOD

print(dp[-1][-1])
0