728x90
n=list(input())
n.sort(reverse=True)
sum=0
for i in n: #n의 원소 하나씩 꺼내서 i에 대입.
sum+=int(i)
if (sum%3)!=0 or '0'not in n:
print(-1)
else:
print(''.join(n))
;;;;;;;
728x90
'📁 코딩테스트 준비 > Python' 카테고리의 다른 글
[자료구조/python]백준 10828번 스택 (0) | 2023.04.30 |
---|---|
[그리디/python] 백준 11399번 ATM (0) | 2023.04.29 |
[그리디/python]백준 2875번 대회 or 인턴 (0) | 2023.04.28 |
[그리디/python]백준 11047번 동전 0 (0) | 2023.04.28 |
[구현 / python] 상하좌우 (0) | 2022.11.21 |