結果

問題 No.615 集合に分けよう
ユーザー pluto77pluto77
提出日時 2017-12-22 17:23:09
言語 Python2
(2.7.18)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 222 bytes
コンパイル時間 55 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 11,480 KB
最終ジャッジ日時 2024-05-10 02:57:20
合計ジャッジ時間 2,401 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,816 KB
testcase_01 AC 11 ms
6,940 KB
testcase_02 AC 11 ms
6,944 KB
testcase_03 AC 11 ms
6,944 KB
testcase_04 AC 11 ms
6,944 KB
testcase_05 AC 11 ms
6,940 KB
testcase_06 AC 11 ms
6,944 KB
testcase_07 AC 11 ms
6,944 KB
testcase_08 AC 11 ms
6,944 KB
testcase_09 AC 11 ms
6,944 KB
testcase_10 AC 11 ms
6,940 KB
testcase_11 AC 11 ms
6,940 KB
testcase_12 AC 11 ms
6,940 KB
testcase_13 AC 12 ms
6,940 KB
testcase_14 AC 12 ms
6,940 KB
testcase_15 AC 24 ms
7,240 KB
testcase_16 AC 88 ms
11,196 KB
testcase_17 AC 84 ms
11,204 KB
testcase_18 AC 84 ms
11,072 KB
testcase_19 AC 84 ms
11,068 KB
testcase_20 AC 85 ms
11,068 KB
testcase_21 AC 86 ms
11,204 KB
testcase_22 AC 89 ms
11,068 KB
testcase_23 AC 57 ms
9,344 KB
testcase_24 AC 85 ms
10,684 KB
testcase_25 AC 11 ms
6,944 KB
testcase_26 AC 11 ms
6,944 KB
testcase_27 AC 43 ms
7,796 KB
testcase_28 AC 45 ms
7,928 KB
testcase_29 AC 50 ms
11,480 KB
testcase_30 AC 52 ms
11,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki_615

n,k=map(int,raw_input().split())
a=map(int,raw_input().split())
a1=sorted(a)
b=[]
for i in xrange(1,n):
 b.append(a1[i]-a1[i-1])
b1=sorted(b,reverse=True)
res=sum(b1)
for i in xrange(k-1):
 res-=b1[i]
print res
0