# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
937038 | Khalid_Alabdullatif | timeismoney (balkan11_timeismoney) | C++14 | 357 ms | 736 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 <bits/stdc++.h>
#define ll long long
#define f first
#define s second
#define pii pair<ll,int>
using namespace std;
const int N=1e4+7;
struct point{
point(){}
point(ll xx, ll yy):x(xx),y(yy){}
ll x=0,y=0;
friend point operator+(point a,point b){
return point(a.x+b.x,b.y+b.y);
}
friend point operator-(point a,point b){
return point(a.x-b.x,a.y-b.y);
}
friend ll operator^(point a, point b){
return a.x*b.y-a.y*b.x;
}
friend ll operator*(point a,point b){
return a.x*b.x+a.y*b.y;
}
friend bool operator<(point a,point b){
if(a.x<b.x)
return 1;
if(a.x==b.x){
if(a.y<=b.y)
return 1;
return 0;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |