본문 바로가기
python-algorithm

[백준] 2750

by 무적김두칠 2021. 1. 21.

1
2
3
4
5
6
7
8
= int(input())
a=[]
for _ in range(N):
    a.append(int(input()))
a.sort()
 
for _ in range(N):
    print (a[_])
cs
반응형

'python-algorithm' 카테고리의 다른 글

[백준] 4344  (0) 2021.01.21
[백준] 2839  (0) 2021.01.21
[백준] 2748  (0) 2021.01.21
[백준] 1546  (0) 2021.01.21
[백준] 1526  (0) 2021.01.21

댓글