結果

問題 No.2548 Problem Selection
ユーザー pluto77pluto77
提出日時 2024-05-25 15:19:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 217 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 86,860 KB
最終ジャッジ日時 2024-05-25 15:20:02
合計ジャッジ時間 3,137 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
78,848 KB
testcase_01 AC 50 ms
67,980 KB
testcase_02 AC 75 ms
86,160 KB
testcase_03 AC 44 ms
64,392 KB
testcase_04 AC 66 ms
76,060 KB
testcase_05 AC 76 ms
86,860 KB
testcase_06 AC 42 ms
63,520 KB
testcase_07 AC 66 ms
80,068 KB
testcase_08 AC 69 ms
81,484 KB
testcase_09 AC 72 ms
82,960 KB
testcase_10 AC 77 ms
86,260 KB
testcase_11 AC 79 ms
86,736 KB
testcase_12 AC 88 ms
86,228 KB
testcase_13 AC 35 ms
51,820 KB
testcase_14 AC 33 ms
52,276 KB
testcase_15 AC 35 ms
52,676 KB
testcase_16 AC 33 ms
52,020 KB
testcase_17 AC 32 ms
52,304 KB
testcase_18 AC 32 ms
52,008 KB
testcase_19 AC 34 ms
53,124 KB
testcase_20 AC 34 ms
51,820 KB
testcase_21 AC 32 ms
52,276 KB
testcase_22 AC 34 ms
52,332 KB
testcase_23 AC 34 ms
53,492 KB
testcase_24 AC 33 ms
52,276 KB
testcase_25 AC 32 ms
52,464 KB
testcase_26 AC 33 ms
52,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
a=list(map(int,input().split()))
a.sort()
x=0
for i in range(1,m):
 x+=(a[i]-a[i-1])**2
res=x
for i in range(m,n):
 x+=(a[i]-a[i-1])**2
 x-=(a[i-m+1]-a[i-m])**2
 res=min(res,x)
print(res)
0