結果

問題 No.2548 Problem Selection
ユーザー vwxyzvwxyz
提出日時 2024-07-17 06:51:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 205 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,644 KB
最終ジャッジ日時 2024-07-17 06:52:06
合計ジャッジ時間 3,881 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
18,716 KB
testcase_01 AC 56 ms
13,360 KB
testcase_02 AC 164 ms
21,124 KB
testcase_03 AC 40 ms
11,904 KB
testcase_04 AC 102 ms
17,012 KB
testcase_05 AC 141 ms
21,180 KB
testcase_06 AC 43 ms
12,160 KB
testcase_07 AC 119 ms
18,392 KB
testcase_08 AC 123 ms
19,432 KB
testcase_09 AC 134 ms
19,880 KB
testcase_10 AC 161 ms
21,644 KB
testcase_11 AC 163 ms
21,512 KB
testcase_12 AC 138 ms
21,512 KB
testcase_13 AC 30 ms
10,880 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 34 ms
10,752 KB
testcase_16 AC 29 ms
10,752 KB
testcase_17 AC 29 ms
10,624 KB
testcase_18 AC 30 ms
10,880 KB
testcase_19 AC 30 ms
10,880 KB
testcase_20 AC 30 ms
10,880 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 AC 30 ms
10,624 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 30 ms
10,880 KB
testcase_26 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
A=list(map(int,input().split()))
A.sort()
D=[0]+[(b-a)**2 for a,b in zip(A,A[1:])]
for i in range(1,N):
    D[i]+=D[i-1]
ans=min(D[i+M-1]-D[i] for i in range(N-M+1))
print(ans)
0