結果

問題 No.3684 chokudai_niku.png
コンテスト
ユーザー Kohei
提出日時 2026-09-08 21:25:55
言語 PyPy3
(7.3.23 + ACL)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
AC  
実行時間 106 ms / 2,000 ms
+ 304µs
コード長 438 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 68 ms
コンパイル使用メモリ 80,896 KB
実行使用メモリ 134,564 KB
最終ジャッジ日時 2026-09-08 21:26:17
合計ジャッジ時間 10,405 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 44
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

from collections import deque
N, M = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
C = []
for a, b in zip(A, B):
    C.append(max(0, a - b))

ans = 0
que = deque()
total = 0
for i in range(N):
    c = C[i]
    que.append(c)
    total += c

    if len(que) > M:
        rm = que.popleft()
        total -= rm

    if i >= M - 1:
        if total > ans:
            ans = total
print(ans)
0