結果
| 問題 | No.3684 chokudai_niku.png |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-09-08 21:25:55 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 106 ms / 2,000 ms |
| + 304µs | |
| コード長 | 438 bytes |
| 記録 | |
| コンパイル時間 | 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 |
ソースコード
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)