結果

問題 No.1011 Infinite Stairs
ユーザー tcltktcltk
提出日時 2021-01-18 02:09:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 658 ms / 2,000 ms
コード長 948 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 260,192 KB
最終ジャッジ日時 2024-07-17 12:16:32
合計ジャッジ時間 7,227 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
89,196 KB
testcase_01 AC 139 ms
89,088 KB
testcase_02 AC 158 ms
89,832 KB
testcase_03 AC 533 ms
260,192 KB
testcase_04 AC 196 ms
89,984 KB
testcase_05 AC 658 ms
259,968 KB
testcase_06 AC 138 ms
89,224 KB
testcase_07 AC 150 ms
89,472 KB
testcase_08 AC 147 ms
88,820 KB
testcase_09 AC 145 ms
89,208 KB
testcase_10 AC 152 ms
89,472 KB
testcase_11 AC 206 ms
89,984 KB
testcase_12 AC 152 ms
89,572 KB
testcase_13 AC 186 ms
89,472 KB
testcase_14 AC 148 ms
89,564 KB
testcase_15 AC 195 ms
89,856 KB
testcase_16 AC 434 ms
259,456 KB
testcase_17 AC 166 ms
89,592 KB
testcase_18 AC 323 ms
197,632 KB
testcase_19 AC 149 ms
89,160 KB
testcase_20 AC 148 ms
89,472 KB
testcase_21 AC 220 ms
134,144 KB
testcase_22 AC 283 ms
166,144 KB
testcase_23 AC 230 ms
143,432 KB
testcase_24 AC 239 ms
147,784 KB
testcase_25 AC 291 ms
170,240 KB
testcase_26 AC 166 ms
89,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
from queue import PriorityQueue
import bisect
import heapq

def input():
    return sys.stdin.readline()[:-1]

sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """6 3 10
# """
# sys.stdin = io.StringIO(_INPUT)

MOD = 1000000007

def main():
    N, d, K = map(int, input().split())

    dp = [0 for _ in range(K+1)]
    dp[0] = 1
    for _ in range(N):
        dp1 = [0 for _ in range(K+1)]
        S = [0 for _ in range(K+1)]
        S[0] = dp[0]
        for k in range(1, K+1):
            S[k] = S[k-1] + dp[k]
        for i in range(1, K+1):
            if i-d <= 0:
                dp1[i] = S[i-1] % MOD
            else:
                dp1[i] = (S[i-1] - S[i-d-1]) % MOD
        dp = dp1
    print(dp[K])

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