結果

問題 No.2566 美しい整数列
ユーザー prd_xxxprd_xxx
提出日時 2023-12-02 15:52:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 168,584 KB
最終ジャッジ日時 2024-09-26 19:27:16
合計ジャッジ時間 6,142 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,760 KB
testcase_01 AC 36 ms
53,760 KB
testcase_02 AC 36 ms
53,888 KB
testcase_03 AC 36 ms
53,376 KB
testcase_04 AC 203 ms
168,584 KB
testcase_05 AC 208 ms
164,420 KB
testcase_06 AC 161 ms
126,232 KB
testcase_07 AC 167 ms
142,536 KB
testcase_08 AC 161 ms
123,880 KB
testcase_09 AC 170 ms
143,132 KB
testcase_10 AC 167 ms
142,624 KB
testcase_11 AC 177 ms
142,164 KB
testcase_12 AC 184 ms
142,980 KB
testcase_13 AC 179 ms
142,552 KB
testcase_14 AC 181 ms
143,044 KB
testcase_15 AC 177 ms
142,644 KB
testcase_16 AC 195 ms
159,588 KB
testcase_17 AC 195 ms
161,876 KB
testcase_18 AC 200 ms
162,912 KB
testcase_19 AC 150 ms
125,448 KB
testcase_20 AC 191 ms
150,664 KB
testcase_21 AC 195 ms
160,436 KB
testcase_22 AC 144 ms
131,868 KB
testcase_23 AC 166 ms
130,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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