結果

問題 No.1011 Infinite Stairs
ユーザー amyuamyu
提出日時 2020-03-20 22:01:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 296 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 64,676 KB
最終ジャッジ日時 2024-12-15 05:50:18
合計ジャッジ時間 2,847 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,244 KB
testcase_01 AC 34 ms
52,368 KB
testcase_02 AC 53 ms
62,780 KB
testcase_03 AC 173 ms
64,392 KB
testcase_04 AC 72 ms
64,284 KB
testcase_05 AC 239 ms
64,676 KB
testcase_06 WA -
testcase_07 AC 45 ms
61,840 KB
testcase_08 WA -
testcase_09 AC 38 ms
59,880 KB
testcase_10 AC 44 ms
62,324 KB
testcase_11 AC 71 ms
63,412 KB
testcase_12 AC 43 ms
61,732 KB
testcase_13 AC 61 ms
63,088 KB
testcase_14 AC 45 ms
61,980 KB
testcase_15 AC 69 ms
62,992 KB
testcase_16 AC 138 ms
64,488 KB
testcase_17 AC 52 ms
64,300 KB
testcase_18 AC 96 ms
64,636 KB
testcase_19 AC 44 ms
61,064 KB
testcase_20 AC 41 ms
61,092 KB
testcase_21 AC 65 ms
62,660 KB
testcase_22 AC 86 ms
63,796 KB
testcase_23 AC 68 ms
61,784 KB
testcase_24 AC 69 ms
62,196 KB
testcase_25 AC 89 ms
63,600 KB
testcase_26 AC 52 ms
61,828 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[k-1:max(-1,k-1-d):-1]:
        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