# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
714900 | Stickfish | Park (BOI16_park) | C++17 | 499 ms | 41020 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <iostream>
#include <vector>
#include <bitset>
#include <cmath>
#include <algorithm>
using namespace std;
using ll = long long;
struct point {
ll x;
ll y;
point() {}
point(ll x_, ll y_): x(x_), y(y_) {}
point operator-(const point pt) const {
return {x - pt.x, y - pt.y};
}
ll sqlen() {
return x * x + y * y;
}
};
struct circle {
point center;
ll r;
};
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |