#35007: python AC


1554101-0@g.puiching.edu.mo (P6A29_1300題了)

學校 : 澳門培正中學
編號 : 216811
來源 : [60.246.150.90]
最後登入時間 :
2024-10-10 18:56:38

a = int(input())
b = list(map(int,input().split()))
b.sort()
print(*b)
#35964: Re: python AC


712045@st.lths.tc.edu.tw (程式餓靈)

學校 : 嶺東高級中學
編號 : 140198
來源 : [123.194.13.171]
最後登入時間 :
2025-09-23 16:37:21

a = int(input())
b = list(map(int,input().split()))
b.sort()
print(*b)


其實可以更短

input()
print(*sorted(list(map(int,input().split()))))
#38664: Re: python AC


wu6335 (sheng hsien)

學校 : 不指定學校
編號 : 254104
來源 : [61.222.31.187]
最後登入時間 :
2025-03-31 15:50:20

a = int(input())
b = list(map(int,input().split()))
b.sort()
print(*b)


其實可以更短

input()
print(*sorted(list(map(int,input().split()))))

 

n=input()
print(*(sorted(input())))