알고리즘 정복하기!/백준 문제풀이

백준 11720번 Python / Math

by seokii 2022. 2. 8.
728x90
반응형

문제 링크

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

 

11720번: 숫자의 합

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

www.acmicpc.net

 

풀이

n = int(input())
number = int(input())
answer = 0

for i in range(10):
    cnt = str(number).count(str(i))
    answer += i * cnt

print(answer)

- 제출한 풀이

 

n = input()
print(sum(map(int, input())))

- sum()을 사용한 이상적인 풀이

728x90
반응형

'알고리즘 정복하기! > 백준 문제풀이' 카테고리의 다른 글

백준 4344번 Python / Math  (0) 2022.02.08
백준 1546번 Python / Math  (0) 2022.02.08
백준 10818번 Python / Math  (0) 2022.02.08
백준 2577번 Python / Math  (0) 2022.02.08
백준 15720번 Python / Greedy  (0) 2022.01.30

댓글