結果

問題 No.1011 Infinite Stairs
ユーザー qibqib
提出日時 2022-11-10 17:14:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 798 ms / 2,000 ms
コード長 398 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 250,240 KB
最終ジャッジ日時 2024-07-23 19:05:34
合計ジャッジ時間 5,709 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 39 ms
51,944 KB
testcase_02 AC 66 ms
71,296 KB
testcase_03 AC 580 ms
249,216 KB
testcase_04 AC 119 ms
76,776 KB
testcase_05 AC 798 ms
247,908 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 58 ms
66,048 KB
testcase_08 AC 39 ms
51,968 KB
testcase_09 AC 46 ms
60,288 KB
testcase_10 AC 60 ms
64,256 KB
testcase_11 AC 131 ms
77,312 KB
testcase_12 AC 56 ms
63,872 KB
testcase_13 AC 100 ms
76,288 KB
testcase_14 AC 49 ms
61,824 KB
testcase_15 AC 116 ms
76,928 KB
testcase_16 AC 414 ms
250,240 KB
testcase_17 AC 82 ms
76,284 KB
testcase_18 AC 261 ms
176,752 KB
testcase_19 AC 54 ms
64,512 KB
testcase_20 AC 48 ms
61,312 KB
testcase_21 AC 140 ms
108,160 KB
testcase_22 AC 233 ms
156,928 KB
testcase_23 AC 155 ms
116,864 KB
testcase_24 AC 160 ms
122,112 KB
testcase_25 AC 244 ms
162,176 KB
testcase_26 AC 85 ms
75,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7

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

print(dp[k])
0