結果

問題 No.1011 Infinite Stairs
ユーザー brthyyjpbrthyyjp
提出日時 2020-03-22 01:16:24
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 406 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 1,686,588 KB
最終ジャッジ日時 2024-12-24 05:06:55
合計ジャッジ時間 33,222 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,520 KB
testcase_01 MLE -
testcase_02 AC 163 ms
119,232 KB
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 AC 43 ms
52,624 KB
testcase_07 AC 124 ms
92,356 KB
testcase_08 AC 36 ms
52,772 KB
testcase_09 AC 40 ms
60,424 KB
testcase_10 AC 85 ms
84,832 KB
testcase_11 TLE -
testcase_12 AC 75 ms
78,452 KB
testcase_13 AC 935 ms
399,288 KB
testcase_14 AC 55 ms
72,872 KB
testcase_15 AC 1,033 ms
423,308 KB
testcase_16 TLE -
testcase_17 AC 454 ms
242,528 KB
testcase_18 TLE -
testcase_19 AC 77 ms
77,756 KB
testcase_20 AC 71 ms
78,484 KB
testcase_21 AC 1,114 ms
418,680 KB
testcase_22 TLE -
testcase_23 AC 1,513 ms
460,720 KB
testcase_24 AC 1,362 ms
468,328 KB
testcase_25 TLE -
testcase_26 MLE -
権限があれば一括ダウンロードができます

ソースコード

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]
        if j+d <= k:
            cum[j+d+1] -= dp[i][j]
        else:
            cum[-1] -= dp[i][j]
    cum = list(accumulate(cum))
    dp[i+1] = cum[0:k+2]
print(dp[n][k]%mod)
0