結果

問題 No.2566 美しい整数列
コンテスト
ユーザー prd_xxx
提出日時 2023-12-02 15:52:56
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 419 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 340 ms
コンパイル使用メモリ 85,376 KB
実行使用メモリ 163,952 KB
最終ジャッジ日時 2026-04-13 19:56:29
合計ジャッジ時間 5,897 ms
ジャッジサーバーID
(参考情報)
judge3_1 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

N,M = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
C = list(map(int,input().split()))

cums = [0]
for i in range(N):
    cums.append(cums[-1] + B[i%M])

for i in range(N):
    A[i] -= cums[i]

sum_cost = sum(C)

from collections import defaultdict
d = defaultdict(lambda: 0)
for i,(a,c) in enumerate(zip(A,C)):
    d[a] += c

ans = sum_cost - max(d.values())
print(ans)
0