結果

問題 No.2566 美しい整数列
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2023-09-20 23:08:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 216 ms / 2,000 ms
コード長 390 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 176,456 KB
最終ジャッジ日時 2024-07-06 17:55:12
合計ジャッジ時間 5,382 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,736 KB
testcase_01 AC 39 ms
54,360 KB
testcase_02 AC 38 ms
54,396 KB
testcase_03 AC 35 ms
55,216 KB
testcase_04 AC 213 ms
171,024 KB
testcase_05 AC 216 ms
176,456 KB
testcase_06 AC 161 ms
141,836 KB
testcase_07 AC 158 ms
138,128 KB
testcase_08 AC 161 ms
139,784 KB
testcase_09 AC 164 ms
138,112 KB
testcase_10 AC 159 ms
138,352 KB
testcase_11 AC 173 ms
139,672 KB
testcase_12 AC 171 ms
139,512 KB
testcase_13 AC 172 ms
139,576 KB
testcase_14 AC 174 ms
139,876 KB
testcase_15 AC 181 ms
139,512 KB
testcase_16 AC 199 ms
160,084 KB
testcase_17 AC 203 ms
162,540 KB
testcase_18 AC 202 ms
163,208 KB
testcase_19 AC 156 ms
132,096 KB
testcase_20 AC 194 ms
159,176 KB
testcase_21 AC 199 ms
161,812 KB
testcase_22 AC 145 ms
132,364 KB
testcase_23 AC 169 ms
137,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

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

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

ans = sum(C)
sc = ans
d = defaultdict(int)
for i in range(N):
    d[A[i] - Bs[i]] += C[i]

for x in d:
    ans = min(ans, sc - d[x])

print(ans)
0