#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main() {
int n,k; cin >> n >> k;
ll ans=k;
priority_queue<ll> p;
int last; cin >> last;
for(int i=1;i<n;i++) {
int t; cin >> t;
p.push(t-last-1);
last=t;
}
int sus=n-k;
while(sus--){
ans+= p.top();
p.pop();
}
cout << ans;
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |