문제
https://www.acmicpc.net/problem/10610
코드
N = input()
lst = list(map(int, N))
total = sum(lst)
if total % 3 == 0:
lst.sort(reverse=True)
if lst[-1] == 0:
print(''.join(map(str, lst)))
else:
print(-1)
else:
print(-1)
'IT > 알고리즘' 카테고리의 다른 글
백준 - 1946번 (0) | 2020.11.25 |
---|---|
백준 - 1764번 (0) | 2020.11.25 |
백준 - 10815번 (0) | 2020.11.24 |
알고리즘 - 셸 정렬 (0) | 2020.11.24 |
알고리즘 - 이진 삽입 정렬 (0) | 2020.11.23 |
댓글