코드

n = int(input())

dot = []

for _ in range(n):
    dot.append(list(map(int, input().split())))

result = sorted(dot, key=lambda x: (x[0], x[1]))

for d in result:
    print(d[0], d[1])

문제 해설

첫번째 요소로 먼저 정렬 후, 두번째 요소로 다시 정렬해주면 정답.

댓글남기기