結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
18,724 KB
testcase_01 AC 76 ms
13,368 KB
testcase_02 AC 212 ms
21,116 KB
testcase_03 AC 45 ms
11,776 KB
testcase_04 AC 141 ms
16,988 KB
testcase_05 AC 187 ms
21,224 KB
testcase_06 AC 52 ms
12,032 KB
testcase_07 AC 170 ms
18,268 KB
testcase_08 AC 172 ms
19,372 KB
testcase_09 AC 190 ms
19,760 KB
testcase_10 AC 222 ms
21,692 KB
testcase_11 AC 198 ms
21,696 KB
testcase_12 AC 181 ms
21,824 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 WA -
testcase_15 AC 31 ms
10,752 KB
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 30 ms
10,624 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 30 ms
10,624 KB
testcase_22 WA -
testcase_23 AC 30 ms
10,624 KB
testcase_24 AC 31 ms
10,624 KB
testcase_25 WA -
testcase_26 AC 30 ms
10,624 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 = 1 << 60
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