[백준] #11650 좌표 정렬하기 python

2022. 12. 27. 20:38

https://www.acmicpc.net/problem/11650

 

11650번: 좌표 정렬하기

첫째 줄에 점의 개수 N (1 ≤ N ≤ 100,000)이 주어진다. 둘째 줄부터 N개의 줄에는 i번점의 위치 xi와 yi가 주어진다. (-100,000 ≤ xi, yi ≤ 100,000) 좌표는 항상 정수이고, 위치가 같은 두 점은 없다.

www.acmicpc.net

 

📕 설명 📕

list에 값들을 넣고 sort하면 알아서 Python에서 y좌표까지 sort 가능하다.

 

🧑🏻‍💻 나의 풀이 🧑🏻‍💻

N = int(input())

src = []
for i in range(N):
    src.append(list(map(int, input().split())))

for x, y in sorted(src):
    print(x, y)

BELATED ARTICLES

more