結果

問題 No.615 集合に分けよう
ユーザー NoaSaberNoaSaber
提出日時 2021-03-14 09:37:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 200 ms / 2,000 ms
コード長 336 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 86,080 KB
最終ジャッジ日時 2024-10-15 19:32:11
合計ジャッジ時間 4,755 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 40 ms
51,584 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 41 ms
52,352 KB
testcase_07 AC 40 ms
51,968 KB
testcase_08 AC 40 ms
51,840 KB
testcase_09 AC 39 ms
51,968 KB
testcase_10 AC 39 ms
51,840 KB
testcase_11 AC 39 ms
52,224 KB
testcase_12 AC 41 ms
51,968 KB
testcase_13 AC 41 ms
52,608 KB
testcase_14 AC 45 ms
58,880 KB
testcase_15 AC 73 ms
76,672 KB
testcase_16 AC 200 ms
85,996 KB
testcase_17 AC 181 ms
85,820 KB
testcase_18 AC 182 ms
85,784 KB
testcase_19 AC 184 ms
85,760 KB
testcase_20 AC 192 ms
85,632 KB
testcase_21 AC 197 ms
85,504 KB
testcase_22 AC 200 ms
86,080 KB
testcase_23 AC 78 ms
82,432 KB
testcase_24 AC 182 ms
85,264 KB
testcase_25 AC 39 ms
52,224 KB
testcase_26 AC 39 ms
52,352 KB
testcase_27 AC 65 ms
80,256 KB
testcase_28 AC 65 ms
80,128 KB
testcase_29 AC 75 ms
85,760 KB
testcase_30 AC 82 ms
85,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
a=list(map(int,input().split()))
a.sort()
b=[]
for i in range(N-1):
    b.append((a[i+1]-a[i],i))
b.sort(reverse=True)
c=[b[i][1] for i in range(K-1)]
c=set(c)
ans=0
check=set()
for i in range(N):
    check.add(a[i])
    if i in c or i==N-1:
        ans+=max(check)-min(check)
        check=set()
print(ans)
0