본문 바로가기
알고리즘-python/백준 문제

[백준/11720/파이썬(Python3)] 숫자의 합

by 빅데이터1020 2021. 6. 29.
SMALL

문제 출처

 

11720번: 숫자의 합

첫째 줄에 숫자의 개수 N (1 ≤ N ≤ 100)이 주어진다. 둘째 줄에 숫자 N개가 공백없이 주어진다.

www.acmicpc.net

 

풀이 코드

cnt=int(input())
num=int(input())

num=str(num)

print(sum(list(map(int,map(str,num)))))

또는

 

cnt=int(input())
num=int(input())

print(sum(list(map(int,str(num)))))
LIST