結果

問題 No.1011 Infinite Stairs
ユーザー terasaterasa
提出日時 2022-05-31 13:58:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,041 ms / 2,000 ms
コード長 1,222 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 487,040 KB
最終ジャッジ日時 2024-09-21 01:17:05
合計ジャッジ時間 6,418 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
54,732 KB
testcase_01 AC 44 ms
54,936 KB
testcase_02 AC 76 ms
74,200 KB
testcase_03 AC 664 ms
340,992 KB
testcase_04 AC 172 ms
112,264 KB
testcase_05 AC 1,041 ms
487,040 KB
testcase_06 AC 45 ms
55,040 KB
testcase_07 AC 70 ms
71,544 KB
testcase_08 AC 43 ms
55,012 KB
testcase_09 AC 51 ms
63,128 KB
testcase_10 AC 65 ms
69,104 KB
testcase_11 AC 213 ms
133,548 KB
testcase_12 AC 63 ms
68,548 KB
testcase_13 AC 154 ms
111,160 KB
testcase_14 AC 58 ms
65,776 KB
testcase_15 AC 168 ms
112,512 KB
testcase_16 AC 497 ms
259,620 KB
testcase_17 AC 109 ms
89,156 KB
testcase_18 AC 304 ms
181,628 KB
testcase_19 AC 63 ms
68,932 KB
testcase_20 AC 57 ms
65,700 KB
testcase_21 AC 160 ms
113,192 KB
testcase_22 AC 260 ms
160,424 KB
testcase_23 AC 179 ms
122,248 KB
testcase_24 AC 193 ms
126,884 KB
testcase_25 AC 275 ms
167,648 KB
testcase_26 AC 109 ms
89,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import pypyjit
import itertools
import heapq
import math
from collections import deque, defaultdict
import bisect

input = sys.stdin.readline
sys.setrecursionlimit(10 ** 6)
pypyjit.set_param('max_unroll_recursion=-1')


def index_lt(a, x):
    'return largest index s.t. A[i] < x or -1 if it does not exist'
    return bisect.bisect_left(a, x) - 1


def index_le(a, x):
    'return largest index s.t. A[i] <= x or -1 if it does not exist'
    return bisect.bisect_right(a, x) - 1


def index_gt(a, x):
    'return smallest index s.t. A[i] > x or len(a) if it does not exist'
    return bisect.bisect_right(a, x)


def index_ge(a, x):
    'return smallest index s.t. A[i] >= x or len(a) if it does not exist'
    return bisect.bisect_left(a, x)


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

dp = [[0 for _ in range(K + 1)] for _ in range(N + 1)]
S = [[0 for _ in range(K + 1)] for _ in range(N + 1)]
dp[0][0] = 1
for j in range(K + 1):
    S[0][j] = 1

for i in range(1, N + 1):
    for j in range(1, K + 1):
        l = max(j - d, 0)
        r = max(j - 1, 0)
        dp[i][j] = (S[i - 1][r] - (S[i - 1][l - 1] if l > 0 else 0)) % mod
        S[i][j] = (S[i][j - 1] + dp[i][j]) % mod
print(dp[N][K])
0