티스토리 뷰
https://www.acmicpc.net/problem/11720
import sys
L = int(sys.stdin.readline())
N = list(sys.stdin.readline())
sum = 0
for i in range(L):
sum += int(N[i])
print(sum)
'Algorithm > Baekjoon' 카테고리의 다른 글
[백준] 1152 : 단어의 개수 - Python (0) | 2020.03.26 |
---|---|
[백준] 1157 : 단어 공부 - Python (0) | 2020.03.26 |
[백준] 11654 : 아스키 코드 - Python (0) | 2020.03.26 |
[백준] 1065 : 한수 - Python (0) | 2020.03.26 |
[백준] 4673 : 셀프 넘버 - Python (0) | 2020.03.26 |