結果

問題 No.1011 Infinite Stairs
ユーザー H20H20
提出日時 2021-06-25 16:25:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 851 ms / 2,000 ms
コード長 365 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 209,680 KB
最終ジャッジ日時 2024-07-17 12:18:47
合計ジャッジ時間 8,272 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,716 KB
testcase_01 AC 39 ms
52,884 KB
testcase_02 AC 79 ms
76,400 KB
testcase_03 AC 585 ms
160,412 KB
testcase_04 AC 851 ms
209,408 KB
testcase_05 AC 847 ms
209,680 KB
testcase_06 AC 38 ms
52,768 KB
testcase_07 AC 146 ms
91,504 KB
testcase_08 AC 37 ms
53,040 KB
testcase_09 AC 42 ms
61,696 KB
testcase_10 AC 77 ms
77,108 KB
testcase_11 AC 389 ms
129,800 KB
testcase_12 AC 62 ms
75,912 KB
testcase_13 AC 241 ms
121,012 KB
testcase_14 AC 65 ms
75,712 KB
testcase_15 AC 156 ms
85,708 KB
testcase_16 AC 614 ms
169,460 KB
testcase_17 AC 646 ms
175,352 KB
testcase_18 AC 293 ms
119,220 KB
testcase_19 AC 50 ms
72,088 KB
testcase_20 AC 70 ms
76,752 KB
testcase_21 AC 187 ms
106,936 KB
testcase_22 AC 559 ms
166,436 KB
testcase_23 AC 178 ms
107,456 KB
testcase_24 AC 170 ms
95,164 KB
testcase_25 AC 293 ms
114,496 KB
testcase_26 AC 112 ms
89,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
N,d,K = map(int,input().split())
mod = 10**9+7
DP = [0]*((N+2)*d)
DP[0] = 1
lenDP = len(DP)
for _ in range(N):
    TEMP = [0]*(lenDP)
    for i in range(lenDP):
        if DP[i]>=1:
            TEMP[i+1]+=DP[i]
            TEMP[i+d+1]-=DP[i]
    DP = list(itertools.accumulate(TEMP))
    for i in range(lenDP):
        DP[i]=DP[i]%mod
print(DP[K])
0