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>
using namespace std;
using pi = pair<int, int>;
using lint = long long;
const int MAXN = 200005;
int sx, ex, sy, ey;
int main(){
sx = sy = -1e9;
ex = ey = 1e9;
for(int i=0; i<2; i++){
int a, b, c, d;
cin >> a >> b >> c >> d;
sx = max(sx, a);
sy = max(sy, b);
ex = min(ex, c);
ey = min(ey, d);
}
if(sx > ex || sy > ey) puts("NULL");
else if(sx == ex && sy == ey) puts("POINT");
else if(sx < ex && sy < ey) puts("FACE");
else puts("LINE");
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |