728x90
https://www.acmicpc.net/problem/2750
<조건>
1. 정렬할 수의 개수 입력
2. 정렬할 수를 한줄씩 입력
3. 오름차순으로 정렬
4. 정렬한 수들을 한줄씩 출력
n=int(input())
num=0
num_list=[]
for i in range(n):
num=int(input())
num_list.append(num)
num_list.sort()
for i in num_list:
print(i)
'python > 백준_프로그래머스' 카테고리의 다른 글
[백준 2039번] 일곱 난쟁이 python과 combinations (0) | 2022.02.03 |
---|---|
[백준 1026번] 보물 python과 리스트 정리 (0) | 2022.02.02 |
[백준 11047번] 동전0(그리디 알고리즘) python (0) | 2022.01.05 |
[백준 1920번] 수 찾기(이진 탐색) python (0) | 2021.12.30 |
[ 백준 2798번] 블랙잭 python (1) | 2021.12.27 |