結果

問題 No.1011 Infinite Stairs
ユーザー d9etd9et
提出日時 2020-03-20 22:01:27
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 353 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 977,564 KB
最終ジャッジ日時 2024-12-15 05:50:07
合計ジャッジ時間 16,815 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,256 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 62 ms
79,164 KB
testcase_03 TLE -
testcase_04 AC 553 ms
216,576 KB
testcase_05 TLE -
testcase_06 AC 55 ms
51,840 KB
testcase_07 AC 81 ms
79,872 KB
testcase_08 AC 38 ms
52,480 KB
testcase_09 AC 42 ms
59,392 KB
testcase_10 AC 73 ms
77,568 KB
testcase_11 AC 385 ms
172,672 KB
testcase_12 AC 63 ms
77,276 KB
testcase_13 AC 414 ms
191,872 KB
testcase_14 AC 43 ms
62,848 KB
testcase_15 AC 188 ms
114,688 KB
testcase_16 TLE -
testcase_17 AC 201 ms
109,824 KB
testcase_18 AC 1,001 ms
322,648 KB
testcase_19 AC 48 ms
70,016 KB
testcase_20 AC 53 ms
71,168 KB
testcase_21 AC 534 ms
225,536 KB
testcase_22 AC 1,237 ms
305,088 KB
testcase_23 AC 618 ms
250,752 KB
testcase_24 AC 532 ms
231,680 KB
testcase_25 AC 551 ms
236,884 KB
testcase_26 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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