호기심 많은 분석가
[백준 10814] 나이순 정렬 (Python) 본문
import sys
n = int(sys.stdin.readline().strip())
arr = [sys.stdin.readline().split() for i in range(n)]
new_arr = sorted(arr, key=lambda x : int(x[0]))
for i in new_arr :
print(i[0], i[1])
sort를 나이에 대해서만 해주면 기입한 순서는 그대로 유지가 되므로 건드리지 않아도 된다.
print() 구문 안에 여러 개의 원소를 넣으면 공백으로 출력된다는 것을 기억하자!
'Coding > Coding Test & Algorithm' 카테고리의 다른 글
[백준 15881] Pen Pineapple Apple Pen (Python) (2) | 2021.06.02 |
---|---|
[백준 1978] 소수 찾기 (Python) (0) | 2021.06.02 |
[백준 2609] 최대공약수와 최소공배수 (Python) (0) | 2021.06.02 |
[백준 1181] 단어 정렬 (Python) (0) | 2021.06.02 |
[백준 1018] 체스판 다시 칠하기 (Python (0) | 2021.06.02 |