結果

問題 No.1011 Infinite Stairs
ユーザー s_shoheis_shohei
提出日時 2020-06-14 14:44:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 865 ms / 2,000 ms
コード長 380 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 427,300 KB
最終ジャッジ日時 2024-07-17 12:10:18
合計ジャッジ時間 5,371 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,196 KB
testcase_01 AC 39 ms
52,676 KB
testcase_02 AC 64 ms
70,624 KB
testcase_03 AC 589 ms
255,992 KB
testcase_04 AC 146 ms
109,232 KB
testcase_05 AC 865 ms
427,300 KB
testcase_06 AC 36 ms
52,752 KB
testcase_07 AC 56 ms
66,988 KB
testcase_08 AC 37 ms
53,404 KB
testcase_09 AC 45 ms
61,716 KB
testcase_10 AC 53 ms
67,020 KB
testcase_11 AC 173 ms
131,652 KB
testcase_12 AC 53 ms
66,144 KB
testcase_13 AC 126 ms
108,880 KB
testcase_14 AC 47 ms
62,568 KB
testcase_15 AC 139 ms
109,732 KB
testcase_16 AC 422 ms
250,348 KB
testcase_17 AC 88 ms
84,296 KB
testcase_18 AC 262 ms
176,604 KB
testcase_19 AC 52 ms
64,852 KB
testcase_20 AC 47 ms
62,696 KB
testcase_21 AC 138 ms
109,768 KB
testcase_22 AC 231 ms
158,464 KB
testcase_23 AC 154 ms
119,872 KB
testcase_24 AC 168 ms
124,148 KB
testcase_25 AC 236 ms
163,104 KB
testcase_26 AC 90 ms
85,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,d,k = map(int, input().split())
dp = [[0 for _ in range(k+5)] for _ in range(n+1)]
dp[0][0]=1
mod=10**9+7
for i in range(n):
    imos=[0]*(k+5)
    for j in range(k):
        imos[j+1]+=dp[i][j]
        mxind = min(j+d+1,k+4)
        imos[mxind]-=dp[i][j]

    for j in range(len(imos)-1):
        imos[j+1]+=imos[j]
        imos[j+1]%=mod
    dp[i+1]=imos

print(dp[-1][k]%mod)
0