[BOJ][Python][실5][1427] 소트인사이드
문제 링크
첫 번째 풀이
정답코드
listcomp나 genexp를 사용하면 10,000,000개의 메모리를 잡기 때문에 메모리초과가 나옵니다. 매번 일일이 출력해야하고 그래서 시간도 3초로 널널합니다.
1
2
3
4
5
6
7
8
9
import sys
from math import pi, sqrt
from collections import deque, Counter
# sys.stdin = open("input.txt", 'r')
s = list(map(int, input()))
s.sort(reverse=True)
print(*s, sep='')
Success Notice: 수고하셨습니다.
Leave a comment