본문 바로가기

Algorithm/Implementation

(Python3) - 프로그래머스(PCCE 기출문제) : 4번 / 저축

반응형

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

 

프로그래머스

SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프

programmers.co.kr

빈칸 채우기 문제였습니다.

📕 풀이방법

📔 풀이과정

모인돈이 70미만 인동안 before값을 더해주고 100미만인동안 after값을 money에 더해줍니다.


📕 Code

📔 Python3

start = int(input())
before = int(input())
after = int(input())

money = start
month = 1
while money < 70:
    money += before
    month += 1
while money < 100:
    money += after
    month += 1

print(month)

*더 나은 내용을 위한 지적, 조언은 언제나 환영합니다.