結果

問題 No.1011 Infinite Stairs
ユーザー ttrttr
提出日時 2020-05-24 22:14:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 755 ms / 2,000 ms
コード長 381 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 272,240 KB
最終ジャッジ日時 2024-07-17 12:08:06
合計ジャッジ時間 5,242 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,124 KB
testcase_01 AC 37 ms
52,248 KB
testcase_02 AC 61 ms
67,448 KB
testcase_03 AC 516 ms
203,484 KB
testcase_04 AC 151 ms
93,444 KB
testcase_05 AC 755 ms
272,240 KB
testcase_06 AC 37 ms
52,404 KB
testcase_07 AC 56 ms
65,004 KB
testcase_08 AC 36 ms
52,220 KB
testcase_09 AC 44 ms
61,220 KB
testcase_10 AC 55 ms
64,548 KB
testcase_11 AC 163 ms
93,432 KB
testcase_12 AC 53 ms
64,752 KB
testcase_13 AC 127 ms
93,116 KB
testcase_14 AC 49 ms
62,156 KB
testcase_15 AC 136 ms
93,364 KB
testcase_16 AC 402 ms
162,136 KB
testcase_17 AC 82 ms
72,836 KB
testcase_18 AC 242 ms
121,196 KB
testcase_19 AC 51 ms
62,760 KB
testcase_20 AC 48 ms
61,644 KB
testcase_21 AC 131 ms
86,520 KB
testcase_22 AC 229 ms
110,116 KB
testcase_23 AC 144 ms
91,072 KB
testcase_24 AC 148 ms
92,272 KB
testcase_25 AC 223 ms
112,360 KB
testcase_26 AC 81 ms
73,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [[0]*(K+1) for _ in range(N+1)]
dp[0][0] = 1
for i in range(N):
    for j in range(K):
        if dp[i][j] == 0:
            continue
        dp[i+1][j+1] += dp[i][j]
        if j+d < K:
            dp[i+1][j+d+1] -= dp[i][j]
    for j in range(K):
        dp[i+1][j+1] += dp[i+1][j]
        dp[i+1][j+1] %= mod
print(dp[N][K])
0