結果

問題 No.1011 Infinite Stairs
ユーザー rlangevinrlangevin
提出日時 2023-01-31 23:17:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 623 ms / 2,000 ms
コード長 475 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 250,128 KB
最終ジャッジ日時 2024-06-30 23:39:08
合計ジャッジ時間 6,768 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,312 KB
testcase_01 AC 39 ms
52,428 KB
testcase_02 AC 70 ms
76,048 KB
testcase_03 AC 457 ms
249,220 KB
testcase_04 AC 623 ms
247,848 KB
testcase_05 AC 613 ms
247,708 KB
testcase_06 AC 39 ms
52,440 KB
testcase_07 AC 128 ms
111,744 KB
testcase_08 AC 40 ms
52,704 KB
testcase_09 AC 46 ms
61,224 KB
testcase_10 AC 68 ms
76,324 KB
testcase_11 AC 305 ms
238,200 KB
testcase_12 AC 58 ms
69,148 KB
testcase_13 AC 182 ms
153,076 KB
testcase_14 AC 60 ms
70,152 KB
testcase_15 AC 134 ms
122,348 KB
testcase_16 AC 470 ms
250,128 KB
testcase_17 AC 502 ms
248,708 KB
testcase_18 AC 227 ms
187,192 KB
testcase_19 AC 54 ms
64,984 KB
testcase_20 AC 63 ms
73,860 KB
testcase_21 AC 145 ms
129,916 KB
testcase_22 AC 434 ms
249,264 KB
testcase_23 AC 143 ms
125,548 KB
testcase_24 AC 139 ms
123,984 KB
testcase_25 AC 229 ms
187,836 KB
testcase_26 AC 94 ms
92,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, d, K = map(int, input().split())
M = d * N
mod = 10 ** 9 + 7
pre = [0] * (M + 1)
preAc = [0] * (M + 2)
pre[0] = 1
for i in range(M + 1):
    preAc[i + 1] = preAc[i] + pre[i]
    
for i in range(N):
    dp = [0] * (M + 1)
    Ac = [0] * (M + 2)
    for j in range(1, M + 1):
        dp[j] = preAc[j] - preAc[max(0, j - d)]
        Ac[j + 1] = Ac[j] + dp[j]
        dp[j] %= mod
        Ac[j + 1] %= mod
        
    dp, pre = pre, dp
    Ac, preAc = preAc, Ac
print(pre[K])
0