문제 링크
https://www.acmicpc.net/problem/11650
문제
문제 풀이
import sys
input = sys.stdin.readline
n = int(input())
array = []
for i in range(n):
[x, y] = list(map(int, input().split()))
array.append([x, y])
array.sort()
for i in range(len(array)):
print(array[i][0], array[i][1])
'Algorithm > BOJ' 카테고리의 다른 글
[백준] 10814 나이순 정렬 (파이썬 python) (0) | 2022.01.19 |
---|---|
[백준] 11651 좌표 정렬하기 2 (파이썬 python) (0) | 2022.01.19 |
[백준] 9461 파도반 수열 (파이썬 python) (0) | 2022.01.19 |
[백준] 1699 제곱수의 합 (파이썬 python) (0) | 2022.01.19 |
[백준] 2579 계단 오르기 (파이썬 python) (0) | 2022.01.18 |