結果

問題 No.1011 Infinite Stairs
ユーザー NoneNone
提出日時 2021-02-26 17:32:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 725 ms / 2,000 ms
コード長 666 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 218,880 KB
最終ジャッジ日時 2024-07-17 12:16:53
合計ジャッジ時間 4,800 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 62 ms
75,884 KB
testcase_03 AC 496 ms
169,428 KB
testcase_04 AC 123 ms
78,080 KB
testcase_05 AC 725 ms
218,880 KB
testcase_06 AC 38 ms
51,712 KB
testcase_07 AC 56 ms
75,488 KB
testcase_08 AC 38 ms
52,480 KB
testcase_09 AC 42 ms
58,368 KB
testcase_10 AC 51 ms
70,144 KB
testcase_11 AC 121 ms
79,768 KB
testcase_12 AC 49 ms
68,736 KB
testcase_13 AC 98 ms
77,824 KB
testcase_14 AC 47 ms
62,592 KB
testcase_15 AC 106 ms
78,564 KB
testcase_16 AC 376 ms
142,152 KB
testcase_17 AC 75 ms
76,028 KB
testcase_18 AC 231 ms
116,480 KB
testcase_19 AC 48 ms
68,096 KB
testcase_20 AC 46 ms
63,744 KB
testcase_21 AC 119 ms
91,008 KB
testcase_22 AC 195 ms
98,396 KB
testcase_23 AC 145 ms
107,008 KB
testcase_24 AC 143 ms
96,256 KB
testcase_25 AC 204 ms
102,940 KB
testcase_26 AC 75 ms
76,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #



###################################################
def example():
    global input
    example = iter(
        """
300 300 90000


        """
            .strip().split("\n"))
    input = lambda: next(example)
###################################################

import sys
input = sys.stdin.readline
from bisect import bisect_left, bisect_right

# example()

N,d,K=map(int, input().split())
MOD=10**9+7

dp=[0]*(K+2)
dp[0]=1
for n in range(1,N+1):
    for k in range(min((n-1)*d,K)+1)[::-1]:
        dp[k+1]+=dp[k]
        dp[min(k+d,K)+1]-=dp[k]
        dp[k]=0
    acc=[0]
    for a in dp:
        acc.append((acc[-1]+a)%MOD)
    dp=acc[1:]

print(dp[K]%MOD)
0