結果

問題 No.615 集合に分けよう
ユーザー zimphazimpha
提出日時 2017-12-15 00:05:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 202 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 74,488 KB
最終ジャッジ日時 2024-05-08 10:31:02
合計ジャッジ時間 2,689 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,312 KB
testcase_01 AC 36 ms
52,176 KB
testcase_02 AC 37 ms
51,904 KB
testcase_03 AC 40 ms
52,648 KB
testcase_04 AC 36 ms
52,520 KB
testcase_05 AC 37 ms
52,544 KB
testcase_06 AC 36 ms
52,304 KB
testcase_07 AC 36 ms
54,008 KB
testcase_08 AC 38 ms
52,344 KB
testcase_09 AC 37 ms
52,492 KB
testcase_10 AC 37 ms
52,448 KB
testcase_11 AC 37 ms
52,328 KB
testcase_12 AC 37 ms
53,252 KB
testcase_13 AC 38 ms
52,640 KB
testcase_14 AC 39 ms
52,416 KB
testcase_15 AC 45 ms
61,764 KB
testcase_16 AC 71 ms
73,808 KB
testcase_17 AC 70 ms
73,884 KB
testcase_18 AC 71 ms
73,352 KB
testcase_19 AC 71 ms
74,356 KB
testcase_20 AC 71 ms
74,004 KB
testcase_21 AC 71 ms
74,352 KB
testcase_22 AC 71 ms
74,488 KB
testcase_23 AC 57 ms
69,700 KB
testcase_24 AC 68 ms
72,512 KB
testcase_25 AC 37 ms
52,856 KB
testcase_26 AC 37 ms
52,736 KB
testcase_27 AC 48 ms
69,408 KB
testcase_28 AC 49 ms
68,404 KB
testcase_29 AC 54 ms
72,572 KB
testcase_30 AC 55 ms
73,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
a = list(map(int, input().split()))
a.sort()
b = [a[i] - a[i - 1] for i in range(1, n)]
b.sort()
b.reverse()
ret = sum(b)
for i in range(k - 1):
  ret -= b[i]
print(ret)
0