結果

問題 No.1011 Infinite Stairs
ユーザー uni_pythonuni_python
提出日時 2020-07-12 23:03:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,230 ms / 2,000 ms
コード長 478 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 247,592 KB
最終ジャッジ日時 2024-07-17 12:11:29
合計ジャッジ時間 6,821 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,376 KB
testcase_01 AC 37 ms
52,648 KB
testcase_02 AC 61 ms
64,672 KB
testcase_03 AC 823 ms
201,844 KB
testcase_04 AC 169 ms
75,932 KB
testcase_05 AC 1,230 ms
247,592 KB
testcase_06 AC 36 ms
52,752 KB
testcase_07 AC 52 ms
62,448 KB
testcase_08 AC 36 ms
52,864 KB
testcase_09 AC 44 ms
60,436 KB
testcase_10 AC 50 ms
61,528 KB
testcase_11 AC 193 ms
75,828 KB
testcase_12 AC 48 ms
61,932 KB
testcase_13 AC 136 ms
75,260 KB
testcase_14 AC 46 ms
60,764 KB
testcase_15 AC 164 ms
75,688 KB
testcase_16 AC 591 ms
159,648 KB
testcase_17 AC 88 ms
71,016 KB
testcase_18 AC 359 ms
117,076 KB
testcase_19 AC 47 ms
61,136 KB
testcase_20 AC 45 ms
59,668 KB
testcase_21 AC 172 ms
83,356 KB
testcase_22 AC 305 ms
108,300 KB
testcase_23 AC 196 ms
88,396 KB
testcase_24 AC 209 ms
90,172 KB
testcase_25 AC 318 ms
110,244 KB
testcase_26 AC 94 ms
69,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))

def main():
    mod=10**9+7
    N,d,K=MI()
    dp=[0]*(1+K)
    dp[0]=1
    
    for i in range(N):
        S=[0]*(K+1)
        for j in range(K):
            S[j+1]=(S[j]+dp[j])%mod
            
        for j in range(K,-1,-1):
            dp[j]=(S[j]-S[max(0,j-d)])%mod
            
    print(dp[-1])
        


main()
0