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!