結果

問題 No.2548 Problem Selection
ユーザー hato336hato336
提出日時 2023-11-25 13:04:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 567 bytes
コンパイル時間 888 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 110,208 KB
最終ジャッジ日時 2024-09-26 10:21:43
合計ジャッジ時間 5,991 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 173 ms
100,608 KB
testcase_01 AC 157 ms
91,008 KB
testcase_02 AC 187 ms
109,056 KB
testcase_03 AC 153 ms
89,728 KB
testcase_04 AC 174 ms
100,736 KB
testcase_05 AC 183 ms
105,856 KB
testcase_06 AC 149 ms
89,856 KB
testcase_07 AC 177 ms
103,808 KB
testcase_08 AC 183 ms
103,936 KB
testcase_09 AC 188 ms
107,648 KB
testcase_10 AC 190 ms
110,208 KB
testcase_11 AC 187 ms
106,368 KB
testcase_12 AC 184 ms
104,704 KB
testcase_13 AC 132 ms
85,632 KB
testcase_14 AC 137 ms
85,888 KB
testcase_15 AC 136 ms
85,504 KB
testcase_16 AC 134 ms
85,760 KB
testcase_17 AC 137 ms
85,760 KB
testcase_18 AC 134 ms
85,504 KB
testcase_19 AC 135 ms
85,760 KB
testcase_20 AC 133 ms
85,504 KB
testcase_21 AC 135 ms
85,760 KB
testcase_22 AC 136 ms
85,760 KB
testcase_23 AC 136 ms
85,632 KB
testcase_24 AC 139 ms
85,760 KB
testcase_25 AC 135 ms
85,632 KB
testcase_26 AC 133 ms
85,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
#n = int(input())
#
#alist = []
#s = input()
n,m = map(int,input().split())
#for i in range(n):
#    alist.append(list(map(int,input().split())))
alist = list(map(int,input().split()))
alist.sort()
ans = 0
for i in range(m-1):
    ans += (alist[i+1]-alist[i])**2
a = [ans]
for i in range(m-1,n-1):
    ans -= (alist[i-m+1] - alist[i-m+2])**2
    ans += (alist[i]-alist[i+1])**2
    a.append(ans)
print(min(a))
0