結果

問題 No.1011 Infinite Stairs
ユーザー TsuboTsubo
提出日時 2020-03-21 09:37:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 694 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 271,040 KB
最終ジャッジ日時 2024-07-17 11:58:31
合計ジャッジ時間 4,803 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,528 KB
testcase_01 AC 37 ms
52,196 KB
testcase_02 AC 53 ms
64,724 KB
testcase_03 AC 476 ms
201,424 KB
testcase_04 AC 123 ms
93,600 KB
testcase_05 AC 694 ms
271,040 KB
testcase_06 AC 37 ms
52,336 KB
testcase_07 AC 48 ms
63,328 KB
testcase_08 AC 36 ms
53,160 KB
testcase_09 AC 42 ms
59,036 KB
testcase_10 AC 46 ms
61,500 KB
testcase_11 AC 135 ms
93,476 KB
testcase_12 AC 46 ms
61,912 KB
testcase_13 AC 107 ms
92,640 KB
testcase_14 AC 45 ms
60,848 KB
testcase_15 AC 121 ms
93,476 KB
testcase_16 AC 343 ms
159,208 KB
testcase_17 AC 67 ms
71,076 KB
testcase_18 AC 217 ms
117,984 KB
testcase_19 AC 44 ms
61,888 KB
testcase_20 AC 45 ms
61,548 KB
testcase_21 AC 113 ms
83,428 KB
testcase_22 AC 185 ms
108,484 KB
testcase_23 AC 128 ms
88,020 KB
testcase_24 AC 135 ms
90,616 KB
testcase_25 AC 194 ms
110,464 KB
testcase_26 AC 69 ms
69,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
def main():
    #入力
    readline=stdin.readline
    N,d,K=map(int,readline().split())
    dp=[[0]*(K+1) for _ in range(N+1)]
    dp[0][0]=1

    for i in range(1,N+1):
        for j in range(i,K+1):
            dp[i][j]+=dp[i-1][j-1]
            if 0<=j-d-1<=K:
                dp[i][j]-=dp[i-1][j-d-1]
        for j in range(i,K+1):
            dp[i][j]+=dp[i][j-1]
            dp[i][j]%=10**9+7

    print(dp[N][K])

if __name__=="__main__":
    main()
0