지나가던 개발자
[Python] 백준 15688번(수 정렬하기 5) 문제 풀이 본문
import sys
nums = []
for i in range(int(sys.stdin.readline())):
nums.append(int(sys.stdin.readline()))
for i in sorted(nums):
sys.stdout.write(str(i))
sys.stdout.write("\n")
비내림차순이라고 어렵게 말을 해놨지만, 사실 오름차순과 같은 의미이다(非내림차순인가)... 2751번과 코드가 완전히 똑같다.
https://developer-next-to-you.tistory.com/206
'PS > Python' 카테고리의 다른 글
[Python] 백준 11966번(2의 제곱인가?) 문제 풀이 (0) | 2022.09.16 |
---|---|
[Python] 백준 2108번(통계학) 문제 풀이 (0) | 2022.09.15 |
[Python] 백준 11931번(수 정렬하기 4) 문제 풀이 (0) | 2022.09.15 |
[Python] 백준 2751번(수 정렬하기 2) 문제 풀이 (0) | 2022.09.15 |
[Python] 백준 9842번(Prime) 문제 풀이 (0) | 2022.09.10 |
Comments