結果

問題 No.2566 美しい整数列
コンテスト
ユーザー Kude
提出日時 2023-12-12 23:16:38
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
AC  
実行時間 297 ms / 2,000 ms
コード長 329 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 273 ms
コンパイル使用メモリ 84,864 KB
実行使用メモリ 173,268 KB
最終ジャッジ日時 2026-04-14 01:08:15
合計ジャッジ時間 7,483 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge1_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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()))
now = 0
d = {}
for i, x in enumerate(a):
    d.setdefault(x - now, []).append(i)
    now += b[i % m]
gain = max(sum(c[i] for i in idx) for idx in d.values())
ans = sum(c) - gain
print(ans)
0