結果

問題 No.2548 Problem Selection
ユーザー Nikkuniku029Nikkuniku029
提出日時 2023-11-25 13:17:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 387 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,820 KB
最終ジャッジ日時 2024-09-26 10:24:50
合計ジャッジ時間 3,706 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
18,596 KB
testcase_01 AC 71 ms
13,116 KB
testcase_02 AC 217 ms
21,120 KB
testcase_03 AC 46 ms
11,776 KB
testcase_04 AC 142 ms
16,992 KB
testcase_05 AC 188 ms
21,144 KB
testcase_06 AC 53 ms
11,904 KB
testcase_07 AC 168 ms
18,268 KB
testcase_08 AC 170 ms
19,448 KB
testcase_09 AC 199 ms
19,624 KB
testcase_10 AC 230 ms
21,820 KB
testcase_11 AC 199 ms
21,704 KB
testcase_12 AC 187 ms
21,700 KB
testcase_13 AC 31 ms
10,752 KB
testcase_14 WA -
testcase_15 AC 31 ms
10,752 KB
testcase_16 AC 30 ms
10,624 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 30 ms
10,624 KB
testcase_22 WA -
testcase_23 AC 31 ms
10,624 KB
testcase_24 AC 31 ms
10,752 KB
testcase_25 WA -
testcase_26 AC 32 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import pairwise
from collections import deque

N, M = map(int, input().split())
A = list(map(int, input().split()))
A.sort()
C = []
for x, y in pairwise(A):
    C.append((y - x) ** 2)
q = deque()
ans = float("inf")
tmp = 0
for i in range(len(C)):
    q.append(C[i])
    tmp += C[i]
    if len(q) == M - 1:
        ans = min(ans, tmp)
        tmp -= q.popleft()
print(ans)
0