728x90
import sys
n = int(sys.stdin.readline())
res = [ int(sys.stdin.readline()) for _ in range(n) ]
res.sort()
for i in res:
print(i)
2751 수 정렬하기 2와 비슷한 문제
728x90
'[Coding Test] > [백준]' 카테고리의 다른 글
[백준] 15829 파이썬(python) : Hashing (0) | 2022.07.06 |
---|---|
[백준] 11651 파이썬(python) : 좌표 정렬하기 2 (0) | 2022.07.05 |
[백준] 10989 파이썬(python) : 수 정렬하기 3 - (★) (0) | 2022.07.05 |
[백준] 2805 파이썬(python) : 나무 자르기 - (★) (0) | 2022.07.05 |
[백준] 2108 파이썬(python) : 통계학 - Counter함수 (0) | 2022.07.05 |