結果

問題 No.2548 Problem Selection
ユーザー 👑 rin204rin204
提出日時 2024-09-15 16:03:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 289 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 86,912 KB
最終ジャッジ日時 2024-09-15 16:03:47
合計ジャッジ時間 3,442 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
78,976 KB
testcase_01 AC 54 ms
66,432 KB
testcase_02 AC 84 ms
85,504 KB
testcase_03 AC 48 ms
62,464 KB
testcase_04 AC 73 ms
75,264 KB
testcase_05 AC 86 ms
86,272 KB
testcase_06 AC 49 ms
62,336 KB
testcase_07 AC 75 ms
78,720 KB
testcase_08 AC 84 ms
81,152 KB
testcase_09 AC 79 ms
82,560 KB
testcase_10 AC 87 ms
85,760 KB
testcase_11 AC 86 ms
86,016 KB
testcase_12 AC 86 ms
86,912 KB
testcase_13 AC 38 ms
51,712 KB
testcase_14 AC 39 ms
51,712 KB
testcase_15 AC 39 ms
51,968 KB
testcase_16 AC 41 ms
51,712 KB
testcase_17 AC 39 ms
51,712 KB
testcase_18 AC 39 ms
51,840 KB
testcase_19 AC 40 ms
51,840 KB
testcase_20 AC 39 ms
51,584 KB
testcase_21 AC 39 ms
51,584 KB
testcase_22 AC 39 ms
51,968 KB
testcase_23 AC 40 ms
51,840 KB
testcase_24 AC 39 ms
51,840 KB
testcase_25 AC 39 ms
51,584 KB
testcase_26 AC 39 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
A = list(map(int, input().split()))
A.sort()
if m == 1:
    print(0)
    exit()

B = [(A[i + 1] - A[i]) ** 2 for i in range(n - 1)]

m -= 1
tot = sum(B[:m])
ans = tot
for i in range(m, n - 1):
    tot += B[i] - B[i - m]
    ans = min(ans, tot)

print(ans)
0