結果

問題 No.2548 Problem Selection
ユーザー lloyzlloyz
提出日時 2023-11-27 00:16:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 299 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 85,504 KB
最終ジャッジ日時 2024-09-26 12:00:38
合計ジャッジ時間 2,811 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
78,464 KB
testcase_01 AC 58 ms
66,304 KB
testcase_02 AC 89 ms
84,480 KB
testcase_03 AC 53 ms
62,848 KB
testcase_04 AC 73 ms
75,136 KB
testcase_05 AC 90 ms
84,864 KB
testcase_06 AC 48 ms
61,952 KB
testcase_07 AC 79 ms
77,824 KB
testcase_08 AC 80 ms
80,384 KB
testcase_09 AC 83 ms
81,664 KB
testcase_10 AC 89 ms
85,504 KB
testcase_11 AC 89 ms
84,736 KB
testcase_12 AC 92 ms
84,608 KB
testcase_13 AC 38 ms
52,096 KB
testcase_14 WA -
testcase_15 AC 38 ms
51,968 KB
testcase_16 AC 39 ms
51,840 KB
testcase_17 AC 39 ms
51,584 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 WA -
testcase_21 AC 38 ms
51,840 KB
testcase_22 RE -
testcase_23 AC 39 ms
51,840 KB
testcase_24 AC 39 ms
51,584 KB
testcase_25 RE -
testcase_26 AC 38 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

n, m = map(int, input().split())
A = list(map(int, input().split()))

A.sort()
ans = 10**18
res = 0
for i in range(1, n):
    res += (A[i] - A[i - 1])**2
    if i >= m - 1:
        ans = min(ans, res)
        res -= (A[i - m + 2] - A[i - m + 1])**2
print(ans)
0