SMALL
문제 출처
풀이 코드
cnt=int(input())
num=int(input())
num=str(num)
print(sum(list(map(int,map(str,num)))))
또는
cnt=int(input())
num=int(input())
print(sum(list(map(int,str(num)))))
LIST
'알고리즘-python > 백준 문제' 카테고리의 다른 글
[백준/10809/파이썬(Python3)] 알파벳 찾기 (0) | 2021.07.01 |
---|---|
[백준/1157/파이썬(Python3)] 단어 공부 (0) | 2021.06.30 |
[백준/11654/파이썬(Python3)] 아스키코드 (0) | 2021.06.29 |
[백준/1110/파이썬(Python3)] 더하기 싸이클 (0) | 2021.06.28 |
[백준/1065/파이썬(Python3)] 한 수 구하기 (0) | 2021.06.28 |