Skip to content

Latest commit

 

History

History

0801

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

백준 [ 빠른 A+B ] ; 15552

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

Python 입력 여러 개 받기

  • input()으로 입력 받을 수 있다. 하지만, 여러 줄을 받게 되면 시간초과 발생
  • 대안 : sys.stdin.readline() 사용

프로그래머스 [ 자릿수 더하기 ] ; Level 0

https://school.programmers.co.kr/learn/courses/30/lessons/120906

python 리스트/배열 만들기

  • n을 str으로 변환한 후 list()함수로 n을 배열로 만든다.
  • 그리고 각 원소의 자료형을 map함수로 정수형으로 바꾸어준다. map(자료형, 적용할 대상)
  • for문을 통해서 arr 의 각 원소들을 sum 변수에 더한다.