본문 바로가기

Development/Algorithm

[Algorithm] 백준 11720번 문제 풀이

728x90

 

Baekjoon Logo

 

이 글은 백준 알고리즘 단계별로 문제풀기 11720번에 대한 문제 풀이입니다. 자세한 내용은 코드 내에 주석을 확인해주세요.
N = input()
number_set = input()

total = 0
for i in range(int(N)):
    total += int(number_set[i])

print(total)
728x90