結果

問題 No.615 集合に分けよう
ユーザー yansi819yansi819
提出日時 2024-05-16 08:30:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 154 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,620 KB
実行使用メモリ 74,328 KB
最終ジャッジ日時 2024-05-16 08:30:52
合計ジャッジ時間 3,427 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,952 KB
testcase_01 AC 36 ms
53,684 KB
testcase_02 AC 33 ms
52,284 KB
testcase_03 AC 34 ms
52,600 KB
testcase_04 AC 33 ms
53,040 KB
testcase_05 AC 34 ms
53,436 KB
testcase_06 AC 33 ms
52,228 KB
testcase_07 AC 33 ms
52,252 KB
testcase_08 AC 33 ms
51,876 KB
testcase_09 AC 32 ms
52,148 KB
testcase_10 AC 33 ms
52,768 KB
testcase_11 AC 32 ms
52,236 KB
testcase_12 AC 33 ms
52,684 KB
testcase_13 AC 34 ms
53,140 KB
testcase_14 AC 33 ms
53,276 KB
testcase_15 AC 40 ms
61,608 KB
testcase_16 AC 59 ms
72,708 KB
testcase_17 AC 61 ms
74,328 KB
testcase_18 AC 65 ms
73,940 KB
testcase_19 AC 64 ms
73,912 KB
testcase_20 AC 62 ms
73,948 KB
testcase_21 AC 64 ms
74,044 KB
testcase_22 AC 68 ms
72,940 KB
testcase_23 AC 51 ms
70,596 KB
testcase_24 AC 61 ms
73,164 KB
testcase_25 AC 34 ms
53,272 KB
testcase_26 AC 34 ms
52,736 KB
testcase_27 AC 44 ms
69,856 KB
testcase_28 AC 44 ms
69,072 KB
testcase_29 AC 49 ms
72,468 KB
testcase_30 AC 49 ms
73,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
a = list(map(int, input().split()))
a.sort()
B = [a[i + 1] - a[i] for i in range(N - 1)]
B.sort()
print(sum(B[0:N - K]))
0