結果

問題 No.615 集合に分けよう
ユーザー kwnwsdnckwnwsdnc
提出日時 2018-03-08 15:01:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 331 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,100 KB
最終ジャッジ日時 2024-10-05 07:51:45
合計ジャッジ時間 2,676 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 25 ms
10,496 KB
testcase_04 AC 25 ms
10,624 KB
testcase_05 AC 24 ms
10,752 KB
testcase_06 AC 24 ms
10,624 KB
testcase_07 AC 24 ms
10,624 KB
testcase_08 AC 24 ms
10,752 KB
testcase_09 AC 24 ms
10,496 KB
testcase_10 AC 24 ms
10,624 KB
testcase_11 AC 25 ms
10,624 KB
testcase_12 AC 24 ms
10,624 KB
testcase_13 AC 27 ms
10,624 KB
testcase_14 AC 28 ms
10,624 KB
testcase_15 AC 29 ms
11,904 KB
testcase_16 AC 41 ms
15,964 KB
testcase_17 AC 44 ms
15,960 KB
testcase_18 AC 93 ms
16,084 KB
testcase_19 AC 94 ms
16,100 KB
testcase_20 AC 91 ms
16,088 KB
testcase_21 AC 88 ms
15,960 KB
testcase_22 AC 85 ms
15,960 KB
testcase_23 AC 63 ms
13,760 KB
testcase_24 AC 79 ms
16,080 KB
testcase_25 AC 25 ms
10,624 KB
testcase_26 AC 24 ms
10,752 KB
testcase_27 AC 35 ms
11,520 KB
testcase_28 AC 36 ms
11,520 KB
testcase_29 AC 43 ms
16,088 KB
testcase_30 AC 59 ms
16,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
ln=list(map(int,input().split()))
N=list(map(int,input().split()))
rem=[]

if ln[1]==1:
    print(max(N)-min(N))
    sys.exit()
elif ln[0]==ln[1]:
    print(0)
    sys.exit()

N.sort()
for i in range(0,ln[0]-1):
    rem.append(N[i+1]-N[i])
    
rem.sort()
ans=0
for i in range(0,ln[0]-ln[1]):
    ans+=rem[i]
print(ans)
0