結果

問題 No.615 集合に分けよう
ユーザー buey_tbuey_t
提出日時 2023-03-31 10:18:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 1,282 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 98,964 KB
最終ジャッジ日時 2024-09-22 15:40:23
合計ジャッジ時間 5,919 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
85,096 KB
testcase_01 AC 125 ms
85,284 KB
testcase_02 AC 124 ms
85,248 KB
testcase_03 AC 125 ms
85,204 KB
testcase_04 AC 124 ms
85,208 KB
testcase_05 AC 124 ms
85,216 KB
testcase_06 AC 125 ms
85,316 KB
testcase_07 AC 124 ms
85,320 KB
testcase_08 AC 124 ms
85,240 KB
testcase_09 AC 126 ms
85,192 KB
testcase_10 AC 128 ms
85,364 KB
testcase_11 AC 127 ms
85,184 KB
testcase_12 AC 128 ms
85,084 KB
testcase_13 AC 128 ms
85,208 KB
testcase_14 AC 138 ms
89,400 KB
testcase_15 AC 144 ms
90,000 KB
testcase_16 AC 168 ms
98,672 KB
testcase_17 AC 168 ms
98,852 KB
testcase_18 AC 170 ms
98,912 KB
testcase_19 AC 168 ms
98,784 KB
testcase_20 AC 166 ms
98,964 KB
testcase_21 AC 169 ms
98,668 KB
testcase_22 AC 166 ms
98,760 KB
testcase_23 AC 155 ms
96,712 KB
testcase_24 AC 167 ms
98,132 KB
testcase_25 AC 125 ms
85,064 KB
testcase_26 AC 125 ms
85,020 KB
testcase_27 AC 149 ms
96,584 KB
testcase_28 AC 150 ms
96,384 KB
testcase_29 AC 153 ms
98,536 KB
testcase_30 AC 153 ms
98,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    from math import sqrt,sin,cos,tan,ceil,radians,floor,gcd,exp,log,log10,log2,factorial,fsum
    from heapq import heapify, heappop, heappush
    from bisect import bisect_left, bisect_right
    from copy import deepcopy
    import copy
    import random
    from collections import deque,Counter,defaultdict
    from itertools import permutations,combinations
    from decimal import Decimal,ROUND_HALF_UP
    #tmp = Decimal(mid).quantize(Decimal('0'), rounding=ROUND_HALF_UP)
    from functools import lru_cache, reduce
    #@lru_cache(maxsize=None)
    from operator import add,sub,mul,xor,and_,or_,itemgetter
    INF = 10**18
    mod1 = 10**9+7
    mod2 = 998244353
    
    #DecimalならPython
    #再帰ならPython!!!!!!!!!!!!!!!!!!!!!!!!!!
    
    
    '''
    
    
    
    '''
    
    N,K = map(int, input().split())
    A = list(map(int, input().split()))
    
    A.sort()
    
    ls = []
    for i in range(N-1):
        ls.append(A[i+1]-A[i])
    
    ls.sort()
    
    ans = 0
    for i in range(N-K):
        ans += ls[i]
    
    print(ans)
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
if __name__ == '__main__':
    main()
0