728x90
https://www.acmicpc.net/problem/11651
n = int(input())
data = []
for i in range(n):
data.append(list(map(int,input().split())))
data.sort(key=lambda x:(x[1],x[0]))
for i in data:
print(i[0], i[1])
반응형
'전.py' 카테고리의 다른 글
[python] 백준 7568 덩치 (0) | 2022.02.04 |
---|---|
[python] 백준 10773 제로 (0) | 2022.01.28 |
[python] 백준 10989 수 정렬하기 3 (0) | 2022.01.27 |
[python] 백준 2869 달팽이는 올라가고 싶다 (0) | 2022.01.27 |
[python] 백준 2839 설탕 배달 (0) | 2022.01.27 |