結果

問題 No.2566 美しい整数列
ユーザー H20H20
提出日時 2023-12-02 16:49:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 223 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 81,828 KB
実行使用メモリ 163,380 KB
最終ジャッジ日時 2024-09-26 20:47:53
合計ジャッジ時間 6,351 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,544 KB
testcase_01 AC 42 ms
53,632 KB
testcase_02 AC 41 ms
53,504 KB
testcase_03 AC 41 ms
53,376 KB
testcase_04 AC 223 ms
152,768 KB
testcase_05 AC 223 ms
142,284 KB
testcase_06 AC 190 ms
141,640 KB
testcase_07 AC 188 ms
137,480 KB
testcase_08 AC 189 ms
139,544 KB
testcase_09 AC 187 ms
138,424 KB
testcase_10 AC 222 ms
138,352 KB
testcase_11 AC 194 ms
139,992 KB
testcase_12 AC 213 ms
140,680 KB
testcase_13 AC 216 ms
139,652 KB
testcase_14 AC 177 ms
139,880 KB
testcase_15 AC 194 ms
139,396 KB
testcase_16 AC 202 ms
160,712 KB
testcase_17 AC 200 ms
162,592 KB
testcase_18 AC 207 ms
163,380 KB
testcase_19 AC 150 ms
122,024 KB
testcase_20 AC 199 ms
159,224 KB
testcase_21 AC 206 ms
162,372 KB
testcase_22 AC 148 ms
129,072 KB
testcase_23 AC 171 ms
137,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
N,M = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
C = list(map(int, input().split()))
for i in reversed(range(N)):
    A[i]-=A[0]
DIFF = [0]
for i in range(N-1):
    DIFF.append(DIFF[-1]+A[i]-A[i+1]+B[i%M])

D = collections.defaultdict(int)
for diff,c in zip(DIFF,C):
    D[diff]+=c
ma = 0
for v in D.values():
    ma = max(ma,v)
print(sum(C)-ma)
0