結果

問題 No.1011 Infinite Stairs
ユーザー tcltktcltk
提出日時 2021-01-18 02:00:09
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 742 bytes
コンパイル時間 434 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 219,256 KB
最終ジャッジ日時 2024-11-30 09:03:19
合計ジャッジ時間 37,807 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
96,052 KB
testcase_01 AC 140 ms
215,056 KB
testcase_02 AC 212 ms
96,548 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 142 ms
96,076 KB
testcase_07 AC 240 ms
219,256 KB
testcase_08 AC 140 ms
96,128 KB
testcase_09 AC 149 ms
89,792 KB
testcase_10 AC 222 ms
89,856 KB
testcase_11 AC 1,942 ms
117,832 KB
testcase_12 AC 185 ms
89,588 KB
testcase_13 AC 1,806 ms
106,792 KB
testcase_14 AC 162 ms
90,008 KB
testcase_15 AC 1,012 ms
111,560 KB
testcase_16 TLE -
testcase_17 AC 863 ms
96,744 KB
testcase_18 TLE -
testcase_19 AC 176 ms
89,672 KB
testcase_20 AC 183 ms
89,824 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 1,993 ms
118,608 KB
testcase_25 TLE -
testcase_26 AC 964 ms
216,208 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 = """# paste here...
# """
# 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)]
        for i in range(K+1):
            dp1[i] = sum(dp[max(i-d, 0):i]) % MOD
        dp = dp1
    print(dp[K])

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