結果

問題 No.2548 Problem Selection
ユーザー konchakoncha
提出日時 2023-11-25 13:08:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 346 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 93,696 KB
最終ジャッジ日時 2024-09-26 10:22:17
合計ジャッジ時間 2,744 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

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

diffs = [(a-b)**2 for a, b in zip(A, A[1:])]

answer = float("inf")
total = 0

for i in range(M-1):
    total += diffs[i]

answer = total

for i in range(M-1, len(diffs)):
    total += diffs[i]
    total -= diffs[i-M+1]
    answer = min(total, answer)

print(answer)
0