본문 바로가기
Study/알고리즘

[백준 알고리즘] 11720번 Python

by Becoming a Hacker 2021. 10. 4.
반응형

문제 정보

 

제출 코드

count = int(input())
n = input()
total = 0
for i in range(count):
	total += int(n[i])
print(total)

댓글