結果

問題 No.1011 Infinite Stairs
ユーザー universatouniversato
提出日時 2020-03-22 00:33:12
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 482 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 236,064 KB
最終ジャッジ日時 2024-12-24 03:54:48
合計ジャッジ時間 45,307 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
17,316 KB
testcase_01 AC 31 ms
167,552 KB
testcase_02 AC 514 ms
28,196 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 33 ms
17,444 KB
testcase_07 AC 290 ms
109,824 KB
testcase_08 AC 33 ms
17,440 KB
testcase_09 AC 36 ms
83,200 KB
testcase_10 AC 205 ms
21,924 KB
testcase_11 TLE -
testcase_12 AC 152 ms
20,644 KB
testcase_13 TLE -
testcase_14 AC 69 ms
18,468 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,384 ms
126,464 KB
testcase_18 TLE -
testcase_19 AC 155 ms
80,512 KB
testcase_20 AC 80 ms
18,724 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 1,637 ms
123,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10 ** 9 + 7

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

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

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

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