結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,816 KB
testcase_01 AC 11 ms
6,820 KB
testcase_02 AC 11 ms
6,816 KB
testcase_03 AC 11 ms
6,816 KB
testcase_04 AC 11 ms
6,820 KB
testcase_05 AC 10 ms
6,824 KB
testcase_06 AC 10 ms
6,816 KB
testcase_07 AC 11 ms
6,816 KB
testcase_08 AC 11 ms
6,820 KB
testcase_09 AC 11 ms
6,816 KB
testcase_10 AC 11 ms
6,816 KB
testcase_11 AC 11 ms
6,820 KB
testcase_12 AC 11 ms
6,820 KB
testcase_13 AC 12 ms
6,816 KB
testcase_14 AC 13 ms
6,820 KB
testcase_15 AC 24 ms
7,296 KB
testcase_16 AC 90 ms
11,068 KB
testcase_17 AC 84 ms
11,076 KB
testcase_18 AC 85 ms
11,200 KB
testcase_19 AC 87 ms
11,068 KB
testcase_20 AC 86 ms
11,072 KB
testcase_21 AC 88 ms
11,200 KB
testcase_22 AC 91 ms
11,068 KB
testcase_23 AC 58 ms
9,216 KB
testcase_24 AC 83 ms
10,608 KB
testcase_25 AC 11 ms
6,816 KB
testcase_26 AC 12 ms
6,816 KB
testcase_27 AC 43 ms
7,796 KB
testcase_28 AC 43 ms
7,924 KB
testcase_29 AC 52 ms
11,352 KB
testcase_30 AC 52 ms
11,484 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