結果

問題 No.1011 Infinite Stairs
ユーザー universatouniversato
提出日時 2020-03-22 00:32:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 719 ms / 2,000 ms
コード長 482 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 273,820 KB
最終ジャッジ日時 2024-07-17 12:00:40
合計ジャッジ時間 5,033 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,728 KB
testcase_01 AC 38 ms
53,092 KB
testcase_02 AC 63 ms
66,864 KB
testcase_03 AC 492 ms
203,620 KB
testcase_04 AC 135 ms
93,312 KB
testcase_05 AC 719 ms
273,820 KB
testcase_06 AC 41 ms
53,020 KB
testcase_07 AC 55 ms
65,804 KB
testcase_08 AC 39 ms
52,304 KB
testcase_09 AC 48 ms
59,868 KB
testcase_10 AC 54 ms
64,460 KB
testcase_11 AC 146 ms
93,304 KB
testcase_12 AC 54 ms
62,784 KB
testcase_13 AC 115 ms
93,096 KB
testcase_14 AC 49 ms
60,752 KB
testcase_15 AC 130 ms
93,016 KB
testcase_16 AC 359 ms
161,456 KB
testcase_17 AC 76 ms
72,692 KB
testcase_18 AC 230 ms
120,128 KB
testcase_19 AC 53 ms
64,088 KB
testcase_20 AC 49 ms
61,032 KB
testcase_21 AC 129 ms
85,572 KB
testcase_22 AC 197 ms
110,452 KB
testcase_23 AC 139 ms
89,716 KB
testcase_24 AC 144 ms
93,180 KB
testcase_25 AC 204 ms
112,036 KB
testcase_26 AC 79 ms
73,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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