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