파이썬
from collections import Counter
from itertools import count
import sys
x1, y1 = map(int , sys.stdin.readline().split())
x2, y2 = map(int , sys.stdin.readline().split())
x3, y3 = map(int , sys.stdin.readline().split())
list_x = list()
list_x.append(x1)
list_x.append(x2)
list_x.append(x3)
list_y = list()
list_y.append(y1)
list_y.append(y2)
list_y.append(y3)
x = 0
y = 0
for i in list_x:
if Counter(list_x)[i] == 1:
x = i
for i in list_y:
if Counter(list_y)[i] == 1:
y = i
print(x, y)
'알고리즘 > 백준 ~ 단계별 풀어보기' 카테고리의 다른 글
백준 15650 "N과 M (2)" (0) | 2022.08.15 |
---|---|
백준 15649번 "N과 M" (0) | 2022.08.15 |
백준 1085번 "직사각형에서 탈출" (0) | 2022.08.13 |
백준 11478번 "서로 다른 부분 문자열의 개수" (0) | 2022.08.13 |
백준 1269 "대칭 차집합" (0) | 2022.08.13 |