보안을 그리다, 훈이

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

Programming/Python & Data Structures

[Baekjoon/Python3] 2751번 수 정렬하기 2

HooNeee 2020. 12. 4. 12:40

[Baekjoon/Python3] 2751번 수 정렬하기 2

 

www.acmicpc.net/problem/2751

 

2751번: 수 정렬하기 2

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

www.acmicpc.net

 

import sys
n = int(sys.stdin.readline())
num = [int(sys.stdin.readline()) for i in range(n)]
num.sort()     # sorted(n) : save new <-> n.sort : replace
for i in range(len(num)):
    sys.stdout.write(str(num[i]) + '\n')
Comments