結果

問題 No.1011 Infinite Stairs
ユーザー d9etd9et
提出日時 2020-03-20 22:10:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 352 ms / 2,000 ms
コード長 372 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 65,068 KB
最終ジャッジ日時 2024-07-17 11:50:08
合計ジャッジ時間 3,426 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,076 KB
testcase_01 AC 43 ms
53,252 KB
testcase_02 AC 54 ms
62,640 KB
testcase_03 AC 249 ms
63,652 KB
testcase_04 AC 83 ms
63,268 KB
testcase_05 AC 352 ms
65,020 KB
testcase_06 AC 37 ms
53,028 KB
testcase_07 AC 51 ms
62,268 KB
testcase_08 AC 37 ms
53,176 KB
testcase_09 AC 43 ms
60,184 KB
testcase_10 AC 50 ms
62,436 KB
testcase_11 AC 91 ms
65,068 KB
testcase_12 AC 49 ms
62,432 KB
testcase_13 AC 72 ms
62,100 KB
testcase_14 AC 45 ms
61,328 KB
testcase_15 AC 81 ms
63,576 KB
testcase_16 AC 189 ms
63,804 KB
testcase_17 AC 63 ms
63,392 KB
testcase_18 AC 130 ms
63,784 KB
testcase_19 AC 49 ms
62,780 KB
testcase_20 AC 45 ms
61,328 KB
testcase_21 AC 81 ms
63,340 KB
testcase_22 AC 116 ms
63,704 KB
testcase_23 AC 86 ms
62,520 KB
testcase_24 AC 90 ms
63,264 KB
testcase_25 AC 119 ms
63,768 KB
testcase_26 AC 62 ms
62,088 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])%mod
  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