#include <bits/stdc++.h>
using namespace std;
vector< int > v;
int main() {
int n, k;
cin >> n >> k;
int x[n + 1], y[n + 1];
for( int i = 1; i <= n; i++ ){
cin >> x[i] >> y[i];
}
for( int i = 1; i <= n; i++ ){
for( int j = i + 1; j <= n; j++ ){
v.push_back( abs( x[i] - x[j] ) + abs( y[i] - y[j] ) );
}
}
sort(v.begin(), v.end());
for( int i = 0; i < k; i++ )
cout << v[i] << endl;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
448 ms |
4948 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
2298 ms |
2097156 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
2317 ms |
2097156 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
2317 ms |
2097156 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
448 ms |
4948 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
448 ms |
4948 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |