https://www.acmicpc.net/problem/11650
import sys
n = int(sys.stdin.readline())
num = []
for i in range(n):
x, y = map(int, sys.stdin.readline().split())
num.append([x, y])
num.sort()
for i in range(n):
print(num[i][0], num[i][1])
'알고리즘 > 백준' 카테고리의 다른 글
백준 1181: 단어 정렬 (Python) (0) | 2021.09.14 |
---|---|
백준 11651: 좌표 정렬하기 2 (Python) (0) | 2021.09.13 |
백준 1427: 소트인사이드 (Python) (0) | 2021.09.13 |
백준 2108: 통계학 (Python) (0) | 2021.09.13 |
백준 10989: 수 정렬하기 3 (Python) (0) | 2021.09.10 |