結果

問題 No.1011 Infinite Stairs
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-16 13:40:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 519 ms / 2,000 ms
コード長 398 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 247,312 KB
最終ジャッジ日時 2024-07-17 12:18:53
合計ジャッジ時間 5,454 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,020 KB
testcase_01 AC 39 ms
53,716 KB
testcase_02 AC 61 ms
69,444 KB
testcase_03 AC 356 ms
201,492 KB
testcase_04 AC 519 ms
247,108 KB
testcase_05 AC 513 ms
247,312 KB
testcase_06 AC 36 ms
53,536 KB
testcase_07 AC 99 ms
86,640 KB
testcase_08 AC 37 ms
52,136 KB
testcase_09 AC 42 ms
59,400 KB
testcase_10 AC 57 ms
67,776 KB
testcase_11 AC 239 ms
150,732 KB
testcase_12 AC 51 ms
64,488 KB
testcase_13 AC 146 ms
106,500 KB
testcase_14 AC 52 ms
65,056 KB
testcase_15 AC 111 ms
91,368 KB
testcase_16 AC 368 ms
210,384 KB
testcase_17 AC 390 ms
220,324 KB
testcase_18 AC 185 ms
124,180 KB
testcase_19 AC 47 ms
62,592 KB
testcase_20 AC 55 ms
66,992 KB
testcase_21 AC 119 ms
94,560 KB
testcase_22 AC 335 ms
195,040 KB
testcase_23 AC 114 ms
93,640 KB
testcase_24 AC 113 ms
92,140 KB
testcase_25 AC 185 ms
124,392 KB
testcase_26 AC 80 ms
76,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""
1<=n,d<=300
n<=k<=n*d
貰うdp
x段目に到達できるのは前回x-d~x-1段目にいるとき
累積和で高速化
"""
n,d,k=map(int,input().split())
dp=[0]*(n*d+1)
dp[0]=1
mod=10**9+7
for _ in range(n):
  ndp=[0]*(n*d+1)
  tmp=0
  for i in range(n*d+1):
    if 0<=i-d-1:
      tmp-=dp[i-d-1]
      tmp%=mod
    ndp[i]=tmp # sum(dp[i-d:i])
    tmp+=dp[i]
    tmp%=mod
  dp=ndp
print(dp[k])
0