-
11720_Python // 숫자의 합IT_Baekjoon 단계별로 풀어보기/문자열 2020. 1. 12. 00:40

Python
import sys c = int(sys.stdin.readline()) a = str(sys.stdin.readline()) res = int() for i in range(c) : res += int(a[i]) print(res)===
'IT_Baekjoon 단계별로 풀어보기 > 문자열' 카테고리의 다른 글
1157_Python // 단어 공부 (실패) (0) 2020.01.12 1152_Python // 단어의 개수 (0) 2020.01.12 2674_Python // 문자열 반복 (0) 2020.01.12 10809_Python // 알파벳 찾기 (0) 2020.01.12 11654_Python // 아스키 코드 (0) 2020.01.12