Problem

1/8

퀵 정렬: 시작(Python)

Theory Click to read/hide

Error

Problem

N(1 <= N <= 100000) 다음에 1에서 < code>100< 사이의 N개의 자연수가 주어진 경우 /code>. N개의 숫자를 감소하지 않는 순서로 인쇄합니다.
 
<헤드> <일># <몸>

입력 출력
1
5
3 1 2 4 2
1 2 2 3 4
Write the program below
def QS(A, st, end):                   
n = int(input())
a = list(map(int, input().split()))
QS(a, 0, n-1)
print(*a)            

     

Program check result

To check the solution of the problem, you need to register or log in!