ブルーブリッジカップpython毎日1題-数列ソート


数列ソート
       
 
    
    :1.0s       :512.0MB
    
         n   ,               。1<=n<=200
    
          n。
       n   ,      ,          10000。
    
      ,                。
    
5
8 3 6 4 9
    
3 4 6 8 9

标题:泡立ちソート
x = int(input())
lst = list(map(int,input().split()))
for i in range(0,len(lst)):
    for j in range(0,len(lst)-i-1):
        if lst[j]>lst[j+1]:
            (lst[j],lst[j+1])=(lst[j+1],lst[j])
for a in range(x):
 	print(lst[a],end=' ')

else:python固有関数sortを使用する
n = int(input())
arr = list(map(int,input().split()))
arr.sort()
for i in range(n):
   print(arr[i],end=' ')