結果

問題 No.2548 Problem Selection
ユーザー rlangevinrlangevin
提出日時 2024-02-29 12:17:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 380 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 93,604 KB
最終ジャッジ日時 2024-09-29 12:40:34
合計ジャッジ時間 3,436 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
89,956 KB
testcase_01 AC 59 ms
74,424 KB
testcase_02 AC 97 ms
93,444 KB
testcase_03 AC 53 ms
68,804 KB
testcase_04 AC 82 ms
85,532 KB
testcase_05 AC 99 ms
93,472 KB
testcase_06 AC 51 ms
67,848 KB
testcase_07 AC 85 ms
87,212 KB
testcase_08 AC 93 ms
89,732 KB
testcase_09 AC 93 ms
90,476 KB
testcase_10 AC 100 ms
92,660 KB
testcase_11 AC 99 ms
93,604 KB
testcase_12 AC 95 ms
93,376 KB
testcase_13 AC 39 ms
54,300 KB
testcase_14 AC 38 ms
53,812 KB
testcase_15 AC 38 ms
54,412 KB
testcase_16 AC 38 ms
55,124 KB
testcase_17 AC 39 ms
55,044 KB
testcase_18 AC 38 ms
54,116 KB
testcase_19 AC 37 ms
55,008 KB
testcase_20 AC 37 ms
55,396 KB
testcase_21 AC 37 ms
54,832 KB
testcase_22 AC 37 ms
54,116 KB
testcase_23 AC 36 ms
54,300 KB
testcase_24 AC 37 ms
54,056 KB
testcase_25 AC 37 ms
55,344 KB
testcase_26 AC 37 ms
53,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

N, M = map(int, input().split())
A = sorted(list(map(int, input().split())))
Q = deque()
now = 0
for i in range(M):
    Q.append(A[i])
    if len(Q) >= 2:
        now += (Q[-1] - Q[-2])**2
ans = now
for i in range(M, N):
    Q.append(A[i])
    now += (Q[-1] - Q[-2]) ** 2
    now -= (Q[0] - Q[1]) ** 2
    Q.popleft()
    ans = min(ans, now)

print(ans)
0