728x90
이 글은 백준 알고리즘 단계별로 문제풀기 11720번에 대한 문제 풀이입니다. 자세한 내용은 코드 내에 주석을 확인해주세요.
N = input()
number_set = input()
total = 0
for i in range(int(N)):
total += int(number_set[i])
print(total)
728x90
'Development > Algorithm' 카테고리의 다른 글
[Algorithm] 백준 2675번 문제풀이 (0) | 2021.03.24 |
---|---|
[Algorithm] 백준 10809번 문제 풀이 (0) | 2021.03.23 |
[Algorithm] 백준 11654번 문제 풀이 (0) | 2021.03.21 |
[Algorithm] 백준 1065번 문제풀이 (0) | 2021.03.20 |
[Algorithm] 백준 4673번 문제 풀이 (0) | 2021.03.20 |