結果

問題 No.2566 美しい整数列
ユーザー lloyzlloyz
提出日時 2023-12-16 23:16:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 234 ms / 2,000 ms
コード長 388 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 176,656 KB
最終ジャッジ日時 2024-09-27 07:50:10
合計ジャッジ時間 6,199 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,840 KB
testcase_01 AC 39 ms
54,704 KB
testcase_02 AC 39 ms
54,252 KB
testcase_03 AC 40 ms
55,048 KB
testcase_04 AC 227 ms
171,028 KB
testcase_05 AC 234 ms
176,656 KB
testcase_06 AC 171 ms
142,212 KB
testcase_07 AC 169 ms
138,140 KB
testcase_08 AC 171 ms
139,656 KB
testcase_09 AC 174 ms
138,364 KB
testcase_10 AC 171 ms
138,480 KB
testcase_11 AC 187 ms
140,048 KB
testcase_12 AC 192 ms
139,376 KB
testcase_13 AC 185 ms
139,796 KB
testcase_14 AC 185 ms
140,132 KB
testcase_15 AC 190 ms
139,900 KB
testcase_16 AC 214 ms
160,724 KB
testcase_17 AC 221 ms
162,760 KB
testcase_18 AC 222 ms
163,536 KB
testcase_19 AC 163 ms
131,984 KB
testcase_20 AC 212 ms
159,400 KB
testcase_21 AC 215 ms
161,784 KB
testcase_22 AC 155 ms
132,464 KB
testcase_23 AC 183 ms
137,448 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