Submission #420634

# Submission time Handle Problem Language Result Execution time Memory
420634 2021-06-08T13:03:00 Z Berted Izvanzemaljci (COI21_izvanzemaljci) C++14
0 / 100
2 ms 204 KB
#include <iostream>
#include <cassert>

using namespace std;

const int INF = 1e9 + 7;

int N, K;

int main()
{
	cin >> N >> K;
	int mnY = INF, mxY = -INF, mnX = INF, mxX = -INF;
	for (int i = 0; i < N; i++)
	{
		int x, y; cin >> x >> y;
		mnY = min(mnY, y); mxY = max(mxY, y);
		mnX = min(mnX, x); mxX = max(mxX, x);
	}
	cout << mnX << " " << mnY << " " << max(mxX - mnX, mxY - mnY) << "\n";
	return 0;
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 204 KB Integer 0 violates the range [1, 2*10^9]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 204 KB Integer 0 violates the range [1, 2*10^9]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 204 KB Integer 0 violates the range [1, 2*10^9]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 204 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 204 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -