結果

問題 No.1011 Infinite Stairs
ユーザー tcltktcltk
提出日時 2021-01-18 01:55:18
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 816 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 188,648 KB
最終ジャッジ日時 2024-11-30 08:57:52
合計ジャッジ時間 45,714 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
94,336 KB
testcase_01 AC 147 ms
188,224 KB
testcase_02 AC 179 ms
94,720 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 142 ms
94,336 KB
testcase_07 AC 279 ms
180,864 KB
testcase_08 AC 145 ms
94,336 KB
testcase_09 AC 148 ms
96,296 KB
testcase_10 AC 266 ms
94,976 KB
testcase_11 TLE -
testcase_12 AC 185 ms
94,976 KB
testcase_13 TLE -
testcase_14 AC 162 ms
95,104 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,403 ms
183,980 KB
testcase_18 TLE -
testcase_19 AC 216 ms
183,040 KB
testcase_20 AC 215 ms
94,976 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 1,484 ms
186,496 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):
            for j in range(d):
                if i+1+j <= K:
                    dp1[i+1+j] = (dp1[i+1+j] + dp[i]) % MOD
        dp = dp1
    print(dp[K])

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