Submission #64202

#TimeUsernameProblemLanguageResultExecution timeMemory
64202gs14004두 박스 (KOI18_box)C++17
100 / 100
6 ms948 KiB
#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 timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...