結果

問題 No.1011 Infinite Stairs
ユーザー takakintakakin
提出日時 2020-03-22 18:45:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 531 ms / 2,000 ms
コード長 359 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 81,984 KB
実行使用メモリ 249,292 KB
最終ジャッジ日時 2024-07-17 12:01:25
合計ジャッジ時間 5,576 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,164 KB
testcase_01 AC 38 ms
53,136 KB
testcase_02 AC 61 ms
70,180 KB
testcase_03 AC 366 ms
203,420 KB
testcase_04 AC 530 ms
249,292 KB
testcase_05 AC 531 ms
249,068 KB
testcase_06 AC 36 ms
51,936 KB
testcase_07 AC 102 ms
86,580 KB
testcase_08 AC 36 ms
52,404 KB
testcase_09 AC 45 ms
60,128 KB
testcase_10 AC 60 ms
69,100 KB
testcase_11 AC 246 ms
150,936 KB
testcase_12 AC 52 ms
64,632 KB
testcase_13 AC 149 ms
107,708 KB
testcase_14 AC 53 ms
65,632 KB
testcase_15 AC 116 ms
91,680 KB
testcase_16 AC 382 ms
210,416 KB
testcase_17 AC 404 ms
219,988 KB
testcase_18 AC 190 ms
124,428 KB
testcase_19 AC 48 ms
62,316 KB
testcase_20 AC 57 ms
66,828 KB
testcase_21 AC 123 ms
95,240 KB
testcase_22 AC 348 ms
194,880 KB
testcase_23 AC 119 ms
93,024 KB
testcase_24 AC 116 ms
91,324 KB
testcase_25 AC 189 ms
124,244 KB
testcase_26 AC 80 ms
76,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n,d,k=map(int,input().split())
mod=10**9+7
A=[0]*(n*d+1)
A[0]=1
for _ in range(n):
  B=[0]*(n*d+1)
  for i in range(n*d+1):
    if not A[i]:
      continue
    else:
      B[i+1]+=A[i]
      if i+d+1<=n*d:
        B[i+d+1]-=A[i]
  A[0]=0
  for i in range(1,n*d+1):
    A[i]=(A[i-1]+B[i])%mod
print(A[k])
0