SWEA(Python) 풀이/D1

SWEA[D1] (Python) 2058번 자릿수 더하기 풀이

개발윗미 2022. 4. 12. 16:56

Python으로 구현한 2058번 자릿수 더하기 문제 풀이입니다.

 

https://swexpertacademy.com/main/code/problem/problemDetail.do?problemLevel=1&contestProbId=AV5QPRjqA10DFAUq&categoryId=AV5QPRjqA10DFAUq&categoryType=CODE&problemTitle=&orderBy=FIRST_REG_DATETIME&selectCodeLang=PYTHON&select-1=1&pageSize=10&pageIndex=1 

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com


data = input()

result = 0
for i in range(len(data)) :
    result += int(data[i])

print(result)

 

1. 자연수를 문자열 형태로 입력받아 각 자릿수를 정수형으로 변환하여 result 값에 누적한다. 이후 반복문 수행이 종료되면 result 값을 출력한다.