結果

問題 No.2548 Problem Selection
ユーザー NullzNullz
提出日時 2023-11-25 14:16:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 267 bytes
コンパイル時間 425 ms
コンパイル使用メモリ 81,732 KB
実行使用メモリ 95,232 KB
最終ジャッジ日時 2024-09-26 10:41:44
合計ジャッジ時間 3,542 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
86,400 KB
testcase_01 AC 68 ms
68,864 KB
testcase_02 AC 109 ms
95,232 KB
testcase_03 AC 60 ms
64,000 KB
testcase_04 AC 83 ms
81,024 KB
testcase_05 AC 103 ms
94,720 KB
testcase_06 AC 58 ms
64,000 KB
testcase_07 AC 89 ms
84,864 KB
testcase_08 AC 94 ms
88,576 KB
testcase_09 AC 97 ms
91,008 KB
testcase_10 AC 104 ms
95,232 KB
testcase_11 AC 104 ms
95,104 KB
testcase_12 AC 104 ms
94,976 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 43 ms
52,352 KB
testcase_16 AC 42 ms
51,840 KB
testcase_17 WA -
testcase_18 AC 42 ms
51,456 KB
testcase_19 AC 42 ms
51,968 KB
testcase_20 WA -
testcase_21 AC 43 ms
51,968 KB
testcase_22 AC 43 ms
52,224 KB
testcase_23 AC 42 ms
51,712 KB
testcase_24 WA -
testcase_25 AC 44 ms
51,712 KB
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
a = sorted([*map(int, input().split())])
d = [(v - u) ** 2 for u, v in zip(a, a[1:])]
for i in range(1, n - 1):
    d[i] += d[i - 1]
d = [0] + d
ans = 10 ** 50
for i in range(n - m):
    ans = min(ans, d[i + m - 1] - d[i])
print(ans)
0