반응형
문제
https://www.acmicpc.net/problem/11650
코드
import sys
n = int(sys.stdin.readline())
num_list = []
for _ in range(n):
x, y = map(int, sys.stdin.readline().rstrip().split())
num_list.append((x,y))
num_list.sort()
for x,y in num_list:
print(x, y)
설명
각 수와 좌표를 입력받아 주고,
num_list에 넣어준다.
이후 정렬을 하게 되면 출력 조건에 알맞게 정렬이 가능하다.
반응형
'개발 연습장 > 백준 문제풀이' 카테고리의 다른 글
[파이썬, Python] 백준 1181: 단어 정렬 (0) | 2023.01.08 |
---|---|
[파이썬, Python] 백준 11651: 좌표 정렬하기 2 (0) | 2023.01.07 |
[파이썬, Python] 백준 1427: 소트인사이드 (0) | 2023.01.05 |
[파이썬, Python] 백준 2108: 통계학 (0) | 2023.01.04 |
[파이썬, Python] 백준 10989: 수 정렬하기 3 (0) | 2023.01.03 |