[백준] #11651 좌표 정렬하기 2 python
2022. 12. 27. 20:45
https://www.acmicpc.net/problem/11651
📕 설명 📕
list에 값들을 넣고 sort하면 알아서 Python에서 x좌표까지 sort 가능하다.
좌표를 바꾸어 출력을 하기만 하면 된다.
🧑🏻💻 나의 풀이 🧑🏻💻
import sys
N = int(input())
src = []
for i in range(N):
x, y = map(int, sys.stdin.readline().split())
src.append([y, x])
for x, y in sorted(src):
print(y, x)
'Programming > Algorithm' 카테고리의 다른 글
[백준] #10814 나이순 정렬 python (0) | 2022.12.27 |
---|---|
[백준] #1181 단어 정렬 python (0) | 2022.12.27 |
[백준] #11650 좌표 정렬하기 python (0) | 2022.12.27 |
[백준] #1427 소트인사이드 python (0) | 2022.12.27 |
[백준] #2108 통계학 python (1) | 2022.12.27 |