Submission #1002724

# Submission time Handle Problem Language Result Execution time Memory
1002724 2024-06-19T18:38:49 Z gabistroeh Izvanzemaljci (COI21_izvanzemaljci) C++14
0 / 100
1 ms 600 KB
#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);
	if(l==0) l = 1;
	cout << minx << " " << miny << " " << l;
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 600 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 348 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 -