#include<bits/stdc++.h>
using namespace std;
long long int inf = 3*(1e9 + 10);
long long int maxi(long long int a, long long int b){
if(a>b) return a;
else return b;
}
long long int mini(long long int a, long long int b){
if(a<b) return a;
else return b;
}
int main(){
int n, k;
cin >> n >> k;
long long int maxx = 0, maxy = 0, minx = inf, miny = inf;
for(int i=0; i<n; i++){
long long int x, y;
cin >> x >> y;
minx = mini(x, minx);
miny = mini(y, miny);
maxx = maxi(x, maxx);
maxy = maxi(y, maxy);
}
long long int l = maxi(maxx-minx, maxy-miny);
cout << minx << " " << miny << " " << l;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Unexpected end of file - int64 expected |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Unexpected end of file - int64 expected |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
Unexpected end of file - int64 expected |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
348 KB |
Unexpected end of file - int64 expected |
2 |
Halted |
0 ms |
0 KB |
- |