結果

問題 No.1011 Infinite Stairs
ユーザー d9etd9et
提出日時 2020-03-20 22:03:03
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 325 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 402,020 KB
最終ジャッジ日時 2024-12-15 05:53:26
合計ジャッジ時間 13,552 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
59,292 KB
testcase_01 AC 34 ms
52,596 KB
testcase_02 AC 55 ms
76,056 KB
testcase_03 AC 1,810 ms
281,080 KB
testcase_04 AC 432 ms
132,944 KB
testcase_05 TLE -
testcase_06 AC 32 ms
53,420 KB
testcase_07 AC 67 ms
75,720 KB
testcase_08 AC 32 ms
52,628 KB
testcase_09 AC 37 ms
59,136 KB
testcase_10 AC 62 ms
76,036 KB
testcase_11 AC 319 ms
109,104 KB
testcase_12 AC 62 ms
76,148 KB
testcase_13 AC 356 ms
127,824 KB
testcase_14 AC 40 ms
62,372 KB
testcase_15 AC 185 ms
84,156 KB
testcase_16 AC 1,827 ms
282,492 KB
testcase_17 AC 174 ms
82,252 KB
testcase_18 AC 809 ms
210,912 KB
testcase_19 AC 47 ms
69,748 KB
testcase_20 AC 53 ms
70,836 KB
testcase_21 AC 427 ms
146,668 KB
testcase_22 AC 950 ms
272,804 KB
testcase_23 AC 491 ms
166,448 KB
testcase_24 AC 414 ms
135,420 KB
testcase_25 AC 496 ms
132,476 KB
testcase_26 AC 194 ms
402,020 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]*(n+1)
for i in range(1,n+1):
  acc = list(accumulate(dp))
  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