알파벳 대문자와 숫자(0~9)로만 구성된 문자열이 입력으로 주어집니다. 이때 모든 알파벳을 오름차순으로 정렬하여 이어서 출력한 뒤에, 그 뒤에 모든 숫자를 더한 값을 이어서 출력합니다.
예를 들어 K1KA5CB7 이라는 값이 들어오면 ABCKK13을 출력합니다.
(입력 조건)
(출력 조건)
입력 예시
K1KA5CB7
출력 예시
ABCKK13
입력 예시
AJKDLSI412K4JSJ9D
출력 예시
ADDIJJJKKLSS20
import sys
N = sys.stdin.readline().strip()
answer = []
num = 0
for x in N:
if x.isalpha():
answer.append(x)
else:
num += int(x)
answer.sort()
if num != 0:
answer.append(str(num))
print(''.join(answer))
Eggy Car combines humor and challenge in a unique way. The game's concept of driving carefully over uneven terrain while protecting an egg makes it both frustrating and rewarding. A great game to test your reflexes!
I am astounded! Thank you so much for providing us with this valuable knowledge; your article is excellent. More shares would be great. Play game the baby in yellow free.