728x90
import sys
n = int(input())
arr = []
for i in range(n):
x, y = map(int, sys.stdin.readline().split())
arr.append((x, y))
arr.sort(key= lambda x : (x[0], x[1])) #1
for x, y in arr:
print(x, y)
#1 : x축 기준 오름차순으로 정렬하고 그 다음 y축 기준으로 오름차순 정렬
728x90
'[Coding Test] > [백준]' 카테고리의 다른 글
[백준] 1654 파이썬(python) : 랜선 자르기 - (★) (0) | 2022.07.05 |
---|---|
[백준] 11866 파이썬(python) : 요세푸스 문제 0 (0) | 2022.07.04 |
[백준] 11050 파이썬(python) : 이항 계수 1 (0) | 2022.07.04 |
[백준] 10866 파이썬(python) : 덱 (0) | 2022.07.04 |
[백준] 10816 파이썬(python) : 숫자 카드 2 (0) | 2022.07.04 |