반응형
https://www.acmicpc.net/problem/2751
# @Author YoungMinKim
# baekjoon
# pypy3로 제출
n=int(input())
ls=[]
for i in range(n):
ls.append(int(input()))
ls.sort()
x=set(ls)
for i in x:
print(i)
반응형
'백준 문제풀이' 카테고리의 다른 글
baekjoon - python - 2864 (0) | 2020.08.26 |
---|---|
baekjoon - python - 2753 (0) | 2020.08.26 |
baekjoon - python - 2750 (0) | 2020.08.25 |
baekjoon - python - 2742 (0) | 2020.08.25 |
baekjoon - python - 2740 (0) | 2020.08.25 |
댓글