# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
693853 | 2023-02-03T10:26:24 Z | 79brue | Izvanzemaljci (COI21_izvanzemaljci) | C++17 | 1 ms | 212 KB |
#include <bits/stdc++.h> using namespace std; typedef long long ll; int n, k; void solve1(); int main(){ scanf("%d %d", &n, &k); if(k==1) solve1(); } void solve1(){ ll xMin = 1e9, xMax = -1e9, yMin = 1e9, yMax = -1e9; for(int i=1; i<=n; i++){ ll x, y; scanf("%lld %lld", &x, &y); xMin = min(x, xMin), yMin = min(y, yMin); xMax = max(x, xMax), yMax = max(y, yMax); } printf("%lld %lld %lld", xMin, yMin, max(xMax - xMin, yMax - yMin)); }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 212 KB | Integer 0 violates the range [1, 2*10^9] |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 212 KB | Unexpected end of file - int64 expected |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 212 KB | Unexpected end of file - int64 expected |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 212 KB | Unexpected end of file - int64 expected |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 212 KB | Unexpected end of file - int64 expected |
2 | Halted | 0 ms | 0 KB | - |