반응형 162121 baekjoon - python - 16212 www.acmicpc.net/problem/16212 16212번: 정열적인 정렬 형준이는 수열을 하나 가지고 있다. 형준이는 수열을 정열적으로 정렬해보려 한다. 과연, 정렬할 수 있을까? www.acmicpc.net # @Author YoungMinKim # baekjoon import sys N = int(sys.stdin.readline()) x = list(map(int,sys.stdin.readline().split())) [print(i,end=' ') for i in sorted(x)] 25점 만점 2020. 10. 25. 이전 1 다음 반응형