結果

問題 No.615 集合に分けよう
ユーザー Mr.FukuMr.Fuku
提出日時 2018-07-11 23:07:00
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 227 ms / 2,000 ms
コード長 558 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,620 KB
最終ジャッジ日時 2024-09-22 02:47:12
合計ジャッジ時間 4,260 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 35 ms
10,624 KB
testcase_12 AC 32 ms
10,752 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 50 ms
12,544 KB
testcase_16 AC 67 ms
16,100 KB
testcase_17 AC 168 ms
20,128 KB
testcase_18 AC 165 ms
20,124 KB
testcase_19 AC 164 ms
20,000 KB
testcase_20 AC 177 ms
20,004 KB
testcase_21 AC 194 ms
20,256 KB
testcase_22 AC 227 ms
20,620 KB
testcase_23 AC 82 ms
16,884 KB
testcase_24 AC 164 ms
20,128 KB
testcase_25 AC 30 ms
10,624 KB
testcase_26 AC 30 ms
10,624 KB
testcase_27 AC 74 ms
16,816 KB
testcase_28 AC 77 ms
16,816 KB
testcase_29 AC 82 ms
18,332 KB
testcase_30 AC 89 ms
18,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!

n,k = map(int,input().split())
lst = list(map(int,input().split()))
lst.sort()
indx_lst = []

if n==k:
    print(0)
else:
    for i in range(n-1):
        x = lst[i+1] - lst[i]
        indx_lst.append([x,i])
        
    indx_lst.sort()
    ans_lst = []
    
    for i in range(1,k):
        ans_lst.append(indx_lst[-i][1])
    
    ans_lst.sort()
    ans_lst.append(n-1)
    
    indx = 0
    total = 0
    
    for i in range(k):
        total += lst[ans_lst[i]] - lst[indx]
        indx = ans_lst[i] + 1
    print(total)
0