結果

問題 No.2566 美しい整数列
ユーザー detteiuudetteiuu
提出日時 2024-11-28 23:49:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 250 ms / 2,000 ms
コード長 339 bytes
コンパイル時間 429 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 176,488 KB
最終ジャッジ日時 2024-11-28 23:49:40
合計ジャッジ時間 6,917 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,504 KB
testcase_01 AC 36 ms
53,248 KB
testcase_02 AC 37 ms
53,760 KB
testcase_03 AC 35 ms
53,376 KB
testcase_04 AC 226 ms
170,984 KB
testcase_05 AC 250 ms
176,488 KB
testcase_06 AC 198 ms
141,868 KB
testcase_07 AC 168 ms
138,008 KB
testcase_08 AC 168 ms
139,528 KB
testcase_09 AC 165 ms
138,108 KB
testcase_10 AC 172 ms
138,220 KB
testcase_11 AC 178 ms
140,132 KB
testcase_12 AC 176 ms
139,412 KB
testcase_13 AC 198 ms
139,452 KB
testcase_14 AC 176 ms
139,424 KB
testcase_15 AC 228 ms
139,796 KB
testcase_16 AC 222 ms
160,508 KB
testcase_17 AC 196 ms
162,428 KB
testcase_18 AC 200 ms
163,324 KB
testcase_19 AC 170 ms
134,960 KB
testcase_20 AC 197 ms
159,572 KB
testcase_21 AC 201 ms
161,828 KB
testcase_22 AC 145 ms
131,996 KB
testcase_23 AC 166 ms
136,988 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()))

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

D = defaultdict(int)
for i in range(N):
    D[A[i]-E[i]] += C[i]

print(sum(C)-max(D.values()))
0