# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
299438 | Bruteforceman | Wish (LMIO19_noras) | C++11 | 3 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int maxn = 2e5 + 10;
const long long inf = 1e16;
typedef long long dtype;
struct point {
dtype x, y;
point (dtype x, dtype y) : x(x), y(y) {}
point () {}
point operator - (point p) const {
return point(x - p.x, y - p.y);
}
point operator + (point p) const {
return point(x + p.x, y + p.y);
}
point operator * (dtype val) const {
return point(x * val, y * val);
}
};
dtype dot(point p, point q) {
return p.x * q.x + p.y * q.y;
}
int main() {
int n, R;
cin >> n >> R;
map <long long, int> cnt;
for(int i = 0; i < n; i++) {
int a, b;
int c, d;
cin >> a >> b >> c >> d;
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |