#include <bits/stdc++.h>
using namespace std;
int main(void)
{
int n,k,ans=0;
cin>>n>>k;
int t[n],a[n];
for(int i=0;i<n;i++)
{
cin>>t[i];
}
a[0]=1;
for(int i=1;i<n;i++)
{
a[i]=t[i]-t[i-1]+1;
}
sort(a,a+n);
for(int i=0;i<n-k;i++)
{
ans=ans+a[i];
}
cout<<ans+n;
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
336 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
336 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
336 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |