結果

問題 No.1011 Infinite Stairs
ユーザー flippergoflippergo
提出日時 2024-10-12 13:35:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 745 ms / 2,000 ms
コード長 413 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 346,088 KB
最終ジャッジ日時 2024-10-12 13:35:35
合計ジャッジ時間 5,780 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 64 ms
72,960 KB
testcase_03 AC 577 ms
260,404 KB
testcase_04 AC 131 ms
99,712 KB
testcase_05 AC 745 ms
346,088 KB
testcase_06 AC 38 ms
52,352 KB
testcase_07 AC 58 ms
68,096 KB
testcase_08 AC 38 ms
51,968 KB
testcase_09 AC 45 ms
59,136 KB
testcase_10 AC 56 ms
65,664 KB
testcase_11 AC 146 ms
105,232 KB
testcase_12 AC 60 ms
64,896 KB
testcase_13 AC 111 ms
93,440 KB
testcase_14 AC 50 ms
61,696 KB
testcase_15 AC 134 ms
99,200 KB
testcase_16 AC 389 ms
259,812 KB
testcase_17 AC 86 ms
84,168 KB
testcase_18 AC 301 ms
231,168 KB
testcase_19 AC 56 ms
65,152 KB
testcase_20 AC 50 ms
61,952 KB
testcase_21 AC 148 ms
130,432 KB
testcase_22 AC 243 ms
200,960 KB
testcase_23 AC 167 ms
144,000 KB
testcase_24 AC 177 ms
151,168 KB
testcase_25 AC 255 ms
209,152 KB
testcase_26 AC 92 ms
85,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,d,K = map(int,input().split())
MOD = 10**9+7
dp = [[0 for _ in range(K+1)] for _ in range(N+1)]
cum = [0]*(K+1)
for j in range(1,K+1):
    if j<=d:
        dp[1][j] = 1
    cum[j] = cum[j-1]+dp[1][j]
for i in range(2,N+1):
    dum = [0]*(K+1)
    for j in range(2,K+1):
        m = min(d,j-1)
        dp[i][j] = (cum[j-1]-cum[j-1-m])%MOD
        dum[j] = (dum[j-1]+dp[i][j])%MOD
    cum = dum[:]
print(dp[N][K])
0