結果

問題 No.2566 美しい整数列
ユーザー noriaokinoriaoki
提出日時 2023-12-02 20:45:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 273 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 156,908 KB
最終ジャッジ日時 2024-09-26 21:39:22
合計ジャッジ時間 6,866 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
53,504 KB
testcase_01 AC 51 ms
53,120 KB
testcase_02 AC 51 ms
53,248 KB
testcase_03 AC 51 ms
53,376 KB
testcase_04 AC 266 ms
154,900 KB
testcase_05 AC 273 ms
156,908 KB
testcase_06 AC 216 ms
126,232 KB
testcase_07 AC 217 ms
142,452 KB
testcase_08 AC 204 ms
122,376 KB
testcase_09 AC 215 ms
142,620 KB
testcase_10 AC 218 ms
142,624 KB
testcase_11 AC 214 ms
142,248 KB
testcase_12 AC 235 ms
142,580 KB
testcase_13 AC 212 ms
142,504 KB
testcase_14 AC 202 ms
142,532 KB
testcase_15 AC 202 ms
142,388 KB
testcase_16 AC 220 ms
147,024 KB
testcase_17 AC 224 ms
148,416 KB
testcase_18 AC 230 ms
149,704 KB
testcase_19 AC 195 ms
136,832 KB
testcase_20 AC 220 ms
138,532 KB
testcase_21 AC 237 ms
140,164 KB
testcase_22 AC 166 ms
123,568 KB
testcase_23 AC 188 ms
119,028 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()))
import collections
d = collections.defaultdict(int)
acc = B[0]
d[0] += C[0]
for i in range(N-1):
    var = (A[i+1] - acc) - A[0]
    d[var] += C[i+1]
    acc += B[(i+1)%M]
print(sum(C) - max(d.values()))
0