이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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... |