[백준] #10814 나이순 정렬 python
2022. 12. 27. 21:06
https://www.acmicpc.net/problem/10814
📕 설명 📕
list에 넣은 후 sort하면 넣은 순서를 지킬 수 없다.
이를 지키기 위해서 200개를 담는 배열을 만든 뒤, 나이에 맞게 하나씩 넣는다.
🧑🏻💻 나의 풀이 🧑🏻💻
N = int(input())
src = []
src_two = [[] for i in range(200)]
for i in range(N):
src.append(list(map(str,input().split())))
for i in src:
src_two[int(i[0]) - 1].append([i[0],i[1]])
for i in src_two:
for j in i:
print(j[0], j[1])
'Programming > Algorithm' 카테고리의 다른 글
[백준] #10870 피보나치 수 5 python (0) | 2022.12.28 |
---|---|
[백준] #18870 좌표 압축 python (0) | 2022.12.27 |
[백준] #1181 단어 정렬 python (0) | 2022.12.27 |
[백준] #11651 좌표 정렬하기 2 python (0) | 2022.12.27 |
[백준] #11650 좌표 정렬하기 python (0) | 2022.12.27 |