728x90
import sys
n = int(input())
res = []
for _ in range(n):
x, y = map(int, sys.stdin.readline().split())
res.append((x, y))
res.sort(key= lambda x : (x[1], x[0]))
for x, y in res:
print(x, y)
11650번 좌표 정렬하기와 비슷한 문제다.
728x90
'[Coding Test] > [백준]' 카테고리의 다른 글
[백준] 18111 파이썬(python) : 마인크래프트 (0) | 2022.07.06 |
---|---|
[백준] 15829 파이썬(python) : Hashing (0) | 2022.07.06 |
[백준] 2750 파이썬(python) : 수 정렬하기 (0) | 2022.07.05 |
[백준] 10989 파이썬(python) : 수 정렬하기 3 - (★) (0) | 2022.07.05 |
[백준] 2805 파이썬(python) : 나무 자르기 - (★) (0) | 2022.07.05 |