結果

問題 No.1011 Infinite Stairs
ユーザー universatouniversato
提出日時 2020-03-20 23:14:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 518 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 267,468 KB
最終ジャッジ日時 2024-12-15 13:56:49
合計ジャッジ時間 50,396 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
17,568 KB
testcase_01 AC 28 ms
186,692 KB
testcase_02 AC 665 ms
57,504 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 WA -
testcase_07 TLE -
testcase_08 AC 26 ms
17,444 KB
testcase_09 AC 29 ms
170,976 KB
testcase_10 AC 705 ms
56,228 KB
testcase_11 TLE -
testcase_12 AC 314 ms
33,056 KB
testcase_13 TLE -
testcase_14 AC 408 ms
36,772 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 105 ms
182,156 KB
testcase_20 AC 576 ms
44,708 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 1,493 ms
267,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10 ** 9 + 7

n,d,k = map(int,input().split())

w = d*n+1
dp = [[0] * w for i in range(n+1) ]
dp[0][0] = 1

for i in range(n):
    # for j in range(d*n,0,-1):
    s = [0] * (d*n+1)
    s[0] = dp[i][0]
    # print(s)
    for j in range(d-1):
        s[j+1] = s[j] + dp[i][j+1]
    # print(s,i)
    for j in range(d-1,w-1):
        tt1 = dp[i][j+1] 
        tt2 = dp[i][j+1-d]
        s[j+1] = s[j] + tt1 - tt2
    # print(s)
    for j in range(0,d*n):
        dp[i+1][j] = s[j-1]

# print(dp)
print(dp[n][k] % mod)
0