結果

問題 No.1011 Infinite Stairs
ユーザー mkawa2mkawa2
提出日時 2020-03-20 21:57:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 725 ms / 2,000 ms
コード長 372 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 245,120 KB
最終ジャッジ日時 2024-07-17 11:49:11
合計ジャッジ時間 4,658 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,308 KB
testcase_01 AC 37 ms
52,900 KB
testcase_02 AC 53 ms
62,732 KB
testcase_03 AC 487 ms
201,232 KB
testcase_04 AC 113 ms
75,580 KB
testcase_05 AC 725 ms
245,120 KB
testcase_06 AC 37 ms
51,456 KB
testcase_07 AC 47 ms
60,288 KB
testcase_08 AC 36 ms
51,968 KB
testcase_09 AC 40 ms
58,112 KB
testcase_10 AC 45 ms
60,160 KB
testcase_11 AC 122 ms
75,520 KB
testcase_12 AC 44 ms
59,648 KB
testcase_13 AC 93 ms
74,960 KB
testcase_14 AC 43 ms
58,880 KB
testcase_15 AC 107 ms
76,124 KB
testcase_16 AC 355 ms
157,568 KB
testcase_17 AC 67 ms
68,096 KB
testcase_18 AC 222 ms
116,096 KB
testcase_19 AC 44 ms
59,392 KB
testcase_20 AC 43 ms
59,520 KB
testcase_21 AC 115 ms
81,664 KB
testcase_22 AC 193 ms
105,728 KB
testcase_23 AC 129 ms
86,272 KB
testcase_24 AC 137 ms
88,960 KB
testcase_25 AC 199 ms
108,800 KB
testcase_26 AC 70 ms
68,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def MI(): return map(int, sys.stdin.readline().split())

def main():
    md=10**9+7
    n,d,k=MI()
    dp=[0]*(k+1)
    dp[0]=1
    for _ in range(n):
        s=0
        ndp = [0] * (k + 1)
        for i in range(1,k+1):
            s+=dp[i-1]
            if i-1-d>=0:s-=dp[i-1-d]
            s%=md
            ndp[i]=s
        dp=ndp
    print(dp[k])

main()
0