結果

問題 No.1011 Infinite Stairs
ユーザー amyuamyu
提出日時 2020-03-20 22:13:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 259 ms / 2,000 ms
コード長 288 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 65,468 KB
最終ジャッジ日時 2024-07-17 11:50:50
合計ジャッジ時間 3,411 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,392 KB
testcase_01 AC 39 ms
52,276 KB
testcase_02 AC 53 ms
62,252 KB
testcase_03 AC 190 ms
65,468 KB
testcase_04 AC 75 ms
63,664 KB
testcase_05 AC 259 ms
64,996 KB
testcase_06 AC 40 ms
52,700 KB
testcase_07 AC 55 ms
61,696 KB
testcase_08 AC 41 ms
52,680 KB
testcase_09 AC 43 ms
59,552 KB
testcase_10 AC 47 ms
61,724 KB
testcase_11 AC 78 ms
64,032 KB
testcase_12 AC 47 ms
61,376 KB
testcase_13 AC 65 ms
63,288 KB
testcase_14 AC 45 ms
60,192 KB
testcase_15 AC 71 ms
63,416 KB
testcase_16 AC 145 ms
64,564 KB
testcase_17 AC 59 ms
63,568 KB
testcase_18 AC 104 ms
63,808 KB
testcase_19 AC 47 ms
62,040 KB
testcase_20 AC 45 ms
61,160 KB
testcase_21 AC 69 ms
62,448 KB
testcase_22 AC 95 ms
65,036 KB
testcase_23 AC 74 ms
61,620 KB
testcase_24 AC 80 ms
61,984 KB
testcase_25 AC 103 ms
63,644 KB
testcase_26 AC 56 ms
62,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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