[python] 백준 11720 숫자의 합

rse·2022년 12월 13일
0

알고리즘

목록 보기
20/44
post-thumbnail
post-custom-banner

https://www.acmicpc.net/problem/11720

이번 문제는 입력한 숫자를 모두 더하는 문제다.

n = int(input())
num = input()		#str로 저장
ans = 0

for i in num:		#num만큼 반복 ex)10 -> 1 -> 0순으로 반복
	ans += int(i)	#ans에 i에 있는 숫자를 반복하며 합산.
print(ans)

profile
기록을 합시다

0개의 댓글