BOJ : 2460(지능형 기차 2) [python]
BOJ: 지능형 기차 2 (2460)
정답여부 : O
소요시간 : 10분 (10:23 ~ 10:33)
max = 0
current = 0
for i in range(10):
getOut, getIn = map(int, input().split())
current = current + getIn - getOut
if max < current:
max = current
print(max)
리뷰
string의 list의 원소를 전부 int형으로 바꾸는 방식
numbers = list(map(int, input().split()))
이번 기회에 꼭 외우도록 하자
헤맨점
- 띄어쓰기로 input 받아서 list 만들기
input().split()
- input를 받고 숫자로 변경하는 식
map(int, input()) 까먹지말자!
- 받은 list를 int형태로 mapping해서 다시 리스트 만들기
list(map(int, input().split()))
Author And Source
이 문제에 관하여(BOJ : 2460(지능형 기차 2) [python]), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@brianpark0500/BOJ-지능형-기차-2-2460-python저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)