haju__log
[python][백준/BOJ] 11720번 : 숫자의 합 본문
반응형
https://www.acmicpc.net/problem/11720
N=int(input())
a=input()
total=0
a=int(a)
while a!=0:
total = total+ a%10
a=a//10
print(total)
간단화 코드>>
N=int(input())
l=list(map(int,input()))
print(sum(l))
반응형
'BOJ_백준' 카테고리의 다른 글
[python][백준/BOJ] 10809번 : 알파벳 찾기 (0) | 2023.02.26 |
---|---|
[python][백준/BOJ] 11654번 : 아스키 코드 (0) | 2023.02.26 |
[python][백준/BOJ] 9086번 : 문자열 (0) | 2023.02.26 |
[python][백준/BOJ] 5597번 : 과제 안 내신 분..? (0) | 2023.02.23 |
[python][백준/BOJ] 10813번 : 공 바꾸기 (0) | 2023.02.23 |