結果

問題 No.1011 Infinite Stairs
ユーザー brthyyjpbrthyyjp
提出日時 2020-03-22 01:17:37
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 418 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 243,300 KB
最終ジャッジ日時 2024-12-24 05:12:09
合計ジャッジ時間 39,627 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
17,696 KB
testcase_01 AC 26 ms
180,596 KB
testcase_02 AC 303 ms
30,372 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 27 ms
17,696 KB
testcase_07 AC 193 ms
165,492 KB
testcase_08 AC 28 ms
17,572 KB
testcase_09 AC 28 ms
120,660 KB
testcase_10 AC 129 ms
23,332 KB
testcase_11 TLE -
testcase_12 AC 111 ms
21,540 KB
testcase_13 AC 1,760 ms
213,644 KB
testcase_14 AC 56 ms
18,976 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 886 ms
57,856 KB
testcase_18 TLE -
testcase_19 AC 99 ms
13,696 KB
testcase_20 AC 63 ms
12,672 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 1,031 ms
169,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, d, k = map(int, input().split())
mod = 10**9+7

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

from itertools import accumulate

for i in range(n):
    cum = [0]*(k+2)
    for j in range(k):
        cum[j+1] += dp[i][j]%mod
        if j+d <= k:
            cum[j+d+1] -= dp[i][j]%mod
        else:
            cum[-1] -= dp[i][j]%mod
    cum = list(accumulate(cum))
    dp[i+1] = cum[0:k+2]
print(dp[n][k]%mod)
0