반응형
1. 코드
N = int(input())
A = []
A = list(map(int, str(N)))
A.sort(reverse=True)
for n in A :
print(n, end="")
2. 솔루션
간단한 배열 문제입니다.
반응형
'알고리즘 > 백준 알고리즘' 카테고리의 다른 글
백준 2292번 벌집 파이썬(Python) (0) | 2020.05.27 |
---|---|
백준 2885번 초콜릿 식사 파이썬(Python) (0) | 2020.05.24 |
백준 2783번 삼각 김밥 파이썬(Python) (0) | 2020.05.23 |
백준 11920번 버블정렬 파이썬(Python) (0) | 2020.05.22 |
백준 2231번 분해합 파이썬(Python) (3) | 2020.05.17 |
백준 1924번 2007년 파이썬(Python) (0) | 2020.05.15 |
백준 11721번 열 개씩 끊어 출력하기 파이썬(Python) (5) | 2020.05.15 |
백준 11718번 그대로 출력하기 파이썬(Python) (0) | 2020.05.15 |
최근댓글