結果

問題 No.1011 Infinite Stairs
ユーザー universatouniversato
提出日時 2020-03-22 12:59:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 708 ms / 2,000 ms
コード長 544 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 272,568 KB
最終ジャッジ日時 2024-07-17 12:01:11
合計ジャッジ時間 4,893 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,876 KB
testcase_01 AC 36 ms
52,404 KB
testcase_02 AC 58 ms
67,012 KB
testcase_03 AC 480 ms
204,544 KB
testcase_04 AC 127 ms
93,432 KB
testcase_05 AC 708 ms
272,568 KB
testcase_06 AC 36 ms
54,100 KB
testcase_07 AC 53 ms
64,076 KB
testcase_08 AC 37 ms
52,344 KB
testcase_09 AC 43 ms
60,000 KB
testcase_10 AC 51 ms
63,528 KB
testcase_11 AC 140 ms
93,356 KB
testcase_12 AC 52 ms
63,204 KB
testcase_13 AC 111 ms
93,080 KB
testcase_14 AC 46 ms
62,140 KB
testcase_15 AC 125 ms
93,320 KB
testcase_16 AC 349 ms
161,988 KB
testcase_17 AC 72 ms
71,588 KB
testcase_18 AC 223 ms
119,868 KB
testcase_19 AC 50 ms
63,092 KB
testcase_20 AC 46 ms
62,136 KB
testcase_21 AC 119 ms
85,956 KB
testcase_22 AC 191 ms
109,928 KB
testcase_23 AC 131 ms
89,940 KB
testcase_24 AC 140 ms
92,556 KB
testcase_25 AC 201 ms
113,720 KB
testcase_26 AC 74 ms
73,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

mod = 10 ** 9 + 7

n,d,k = map(int,input().split())

w = min(d*n+1,k+1)
dp = [[0] * w for i in range(n+1) ]
dp[0][0] = 1
s = [0] * w

for i in range(n):
    # for j in range(d*n,0,-1):
    # s = [0] * w
    s[0] = dp[i][0]
    # print(s)
    for j in range(w-1):
        s[j+1] = (s[j] + dp[i][j+1]) % mod
    
    for j in range(w-1):
        dp[i+1][j+1] = s[j] % mod
        if 0 <= j-d:
            dp[i+1][j+1] = (dp[i+1][j+1] - s[j-d]) % mod

# print(dp)
print(dp[n][k] % mod)
0