https://www.acmicpc.net/problem/11720
N = int(input())
N_input = list(map(int, input()))
result = 0
for i in range(len(N_input)):
result += N_input[i]
print(result)
'Python > Baekjoon' 카테고리의 다른 글
백준 2675번 : 문자열 반복 (0) | 2022.10.06 |
---|---|
백준 10809번 : 알파벳 찾기 (0) | 2022.10.06 |
백준 11654번 : 아스키 코드 (0) | 2022.10.06 |
백준 1065번 : 한수 (0) | 2022.10.06 |
백준 4673번 : 셀프 넘버 (0) | 2022.10.06 |