보안을 그리다, 훈이

[Baekjoon/Python3] 2750번 수 정렬하기 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 2750번 수 정렬하기

HooNeee 2020. 12. 4. 12:39

[Baekjoon/Python3] 2750번 수 정렬하기

 

www.acmicpc.net/problem/2750

 

2750번: 수 정렬하기

첫째 줄에 수의 개수 N(1 ≤ N ≤ 1,000)이 주어진다. 둘째 줄부터 N개의 줄에는 숫자가 주어진다. 이 수는 절댓값이 1,000보다 작거나 같은 정수이다. 수는 중복되지 않는다.

www.acmicpc.net

 

n = int(input())
list_num = [int(input()) for i in range(n)]
list_num.sort()
for i in range(n):
    print(list_num[i])
Comments