結果

問題 No.1011 Infinite Stairs
ユーザー googol_S0googol_S0
提出日時 2020-06-02 15:55:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 520 ms / 2,000 ms
コード長 284 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 273,136 KB
最終ジャッジ日時 2024-07-17 12:08:26
合計ジャッジ時間 4,198 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,812 KB
testcase_01 AC 37 ms
53,560 KB
testcase_02 AC 56 ms
67,800 KB
testcase_03 AC 365 ms
203,720 KB
testcase_04 AC 107 ms
93,324 KB
testcase_05 AC 520 ms
273,136 KB
testcase_06 AC 36 ms
52,180 KB
testcase_07 AC 53 ms
66,400 KB
testcase_08 AC 36 ms
52,684 KB
testcase_09 AC 44 ms
60,900 KB
testcase_10 AC 52 ms
65,464 KB
testcase_11 AC 115 ms
93,304 KB
testcase_12 AC 51 ms
65,796 KB
testcase_13 AC 96 ms
92,820 KB
testcase_14 AC 47 ms
63,624 KB
testcase_15 AC 105 ms
93,584 KB
testcase_16 AC 268 ms
162,156 KB
testcase_17 AC 65 ms
72,768 KB
testcase_18 AC 175 ms
121,564 KB
testcase_19 AC 51 ms
65,456 KB
testcase_20 AC 46 ms
63,076 KB
testcase_21 AC 101 ms
87,588 KB
testcase_22 AC 153 ms
110,276 KB
testcase_23 AC 111 ms
91,392 KB
testcase_24 AC 116 ms
94,208 KB
testcase_25 AC 159 ms
113,116 KB
testcase_26 AC 67 ms
73,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D,K=map(int,input().split())
K-=N
D-=1
DP=[[0]*(K+1) for i in range(N+1)]
DP[0][0]=1
mod=10**9+7
def f(x,y):
  global DP
  if y<0:
    return 0
  else:
    return DP[x][y]

for i in range(N):
  for j in range(K+1):
    DP[i+1][j]=(f(i+1,j-1)+DP[i][j]-f(i,j-1-D))%mod
print(DP[N][K])
0