반응형 27512 baekjoon - python - 2752 www.acmicpc.net/problem/2752 2752번: 세수정렬 숫자 세 개가 주어진다. 이 숫자는 1보다 크거나 같고, 1,000,000보다 작거나 같다. 이 숫자는 모두 다르다. www.acmicpc.net # @Author YoungMinKim # baekjoon import sys while True: x,y = map(int,sys.stdin.readline().split()) if x == y == 0: break if x>y: print('Yes') else: print('No') 2020. 10. 14. baekjoon - python - 2751 https://www.acmicpc.net/problem/2751 2751번: 수 정렬하기 2 첫째 줄에 수의 개수 N(1 ≤ N ≤ 1,000,000)이 주어진다. 둘째 줄부터 N개의 줄에는 숫자가 주어진다. 이 수는 절댓값이 1,000,000보다 작거나 같은 정수이다. 수는 중복되지 않는다. www.acmicpc.net # @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) 2020. 8. 25. 이전 1 다음 반응형