http://acmicpc.net/problem/1427
{코드}
print(''.join(map(str, sorted(map(int, input()), reverse=True))))
# --- #
sorted_string = sorted(map(int, input()))
answer = ''.join(map(str, sorted_string))
print(answer)
{설명}
주어진 문자열을 정수로 바꾸어 정렬한 다음 다시 문자열로 바꾼 다음 하나의 문자열로 합쳐 출력한다.
'알고리즘 공부 > BOJ백준 풀이' 카테고리의 다른 글
[백준 11651번-파이썬/Python] 좌표 정렬하기 2 (0) | 2020.12.30 |
---|---|
[백준 11650번-파이썬/Python] 좌표 정렬하기 (0) | 2020.12.30 |
[백준 2108번-파이썬/Python] 통계학 (0) | 2020.12.29 |
[백준 10989번-파이썬/Python] 수 정렬하기 3 (0) | 2020.12.28 |
[백준 2751번-파이썬/Python] 수 정렬하기 2 (0) | 2020.12.28 |