문제 링크 : http://boj.kr/11665난이도 : S5태그 : 기하학코드#include #define all(x) (x).begin(), (x).end()#define INF 0x7FFFFFFFusing namespace std;using ll = long long;using ld = long double;using pii = pair;using pll = pair;int main(){ ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); int n; cin >> n; pii x, y, z; x = y = z = {0, INF}; for(int i = 0; i > x1 >> y1 >> z1 >> x2 >> y2 >> z2;..