結果

問題 No.1011 Infinite Stairs
ユーザー tanon710tanon710
提出日時 2020-05-04 18:29:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,061 ms / 2,000 ms
コード長 299 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 407,692 KB
最終ジャッジ日時 2024-07-17 12:06:37
合計ジャッジ時間 6,358 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,008 KB
testcase_01 AC 36 ms
52,216 KB
testcase_02 AC 69 ms
78,844 KB
testcase_03 AC 698 ms
261,324 KB
testcase_04 AC 163 ms
100,860 KB
testcase_05 AC 1,061 ms
407,692 KB
testcase_06 AC 36 ms
52,428 KB
testcase_07 AC 61 ms
77,324 KB
testcase_08 AC 35 ms
52,444 KB
testcase_09 AC 43 ms
60,264 KB
testcase_10 AC 53 ms
72,472 KB
testcase_11 AC 181 ms
107,060 KB
testcase_12 AC 53 ms
69,708 KB
testcase_13 AC 134 ms
94,604 KB
testcase_14 AC 46 ms
64,428 KB
testcase_15 AC 154 ms
100,164 KB
testcase_16 AC 536 ms
231,676 KB
testcase_17 AC 92 ms
84,312 KB
testcase_18 AC 331 ms
165,052 KB
testcase_19 AC 54 ms
71,456 KB
testcase_20 AC 48 ms
64,688 KB
testcase_21 AC 166 ms
109,824 KB
testcase_22 AC 276 ms
138,536 KB
testcase_23 AC 198 ms
128,572 KB
testcase_24 AC 203 ms
121,316 KB
testcase_25 AC 300 ms
146,316 KB
testcase_26 AC 99 ms
86,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=10**9+7
n,d,k=map(int,input().split())
dp=[[0]*(k+1) for _ in range(n+1)]
dp[0][0]=1
for i in range(n):
    acum=[0]
    for l in range(k):
        acum.append((acum[-1]+dp[i][l])%mod)
    for j in range(1,k+1):
        dp[i+1][j]=acum[j]-acum[max(0,j-d)]
        dp[i+1][j]%=mod
print(dp[n][k])
0