結果

問題 No.1011 Infinite Stairs
ユーザー d9etd9et
提出日時 2020-03-20 22:09:59
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 366 bytes
コンパイル時間 533 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 375,240 KB
最終ジャッジ日時 2024-12-15 06:10:41
合計ジャッジ時間 11,814 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
59,876 KB
testcase_01 AC 32 ms
52,028 KB
testcase_02 AC 48 ms
62,512 KB
testcase_03 AC 1,466 ms
247,980 KB
testcase_04 AC 386 ms
96,388 KB
testcase_05 TLE -
testcase_06 AC 33 ms
53,084 KB
testcase_07 AC 72 ms
75,552 KB
testcase_08 AC 35 ms
53,288 KB
testcase_09 AC 40 ms
60,528 KB
testcase_10 AC 66 ms
75,832 KB
testcase_11 AC 289 ms
87,736 KB
testcase_12 AC 61 ms
73,276 KB
testcase_13 AC 282 ms
95,252 KB
testcase_14 AC 42 ms
60,220 KB
testcase_15 AC 181 ms
77,884 KB
testcase_16 AC 1,443 ms
279,376 KB
testcase_17 AC 153 ms
77,928 KB
testcase_18 AC 611 ms
130,336 KB
testcase_19 AC 44 ms
61,676 KB
testcase_20 AC 52 ms
68,644 KB
testcase_21 AC 339 ms
105,188 KB
testcase_22 AC 754 ms
167,396 KB
testcase_23 AC 403 ms
116,108 KB
testcase_24 AC 337 ms
95,192 KB
testcase_25 AC 415 ms
93,856 KB
testcase_26 AC 166 ms
375,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
n,d,k = map(int,input().split())
mod = 10**9+7
dp = [0 for i in range(k+1)]
dp[0] = 1
acc = [0]*(k+1)
for i in range(1,n+1):
  acc[0] = dp[0]
  for j in range(1,k+1):
    acc[j] = acc[j-1]+dp[j]
  dp[0] = 0
  for j in range(1,k+1):
    if j <= d:
      dp[j] = acc[j-1]
    else:
      dp[j] = (acc[j-1]-acc[j-d-1])%mod
print(dp[-1])
0