Home 수 정렬하기 2 백준 2751번 정렬
Post
Cancel

수 정렬하기 2 백준 2751번 정렬

https://www.acmicpc.net/problem/2751

1
2
3
4
5
6
7
8
9
num = int(input())
num_list = []
for i in range(num):
    num_list.append(int(input()))
    
num_list = sorted(num_list)
for i in range(num):
    print(num_list[i])
reverse로 오름차순/내림차순을 선택할  있습니다 기본값은 True일겁니다.

pypy로 해야 통과합니다. 파이썬은 시간초과나오네요

This post is licensed under CC BY 4.0 by the author.

Comments powered by Disqus.