PCCE 기출문제 4번 - 저축
in Coding Test / Programmers
프로그래머스 파이썬 - PCCE 기출문제 4번 - 저축
PCCE 기출문제 4번 - 저축
문제
풀이
start = int(input())
before = int(input())
after = int(input())
money = start
month = 1
while money < 70:
money += before
month += 1
while 70 <= money < 100:
money += after
month += 1
print(month)
현재 저장한 돈 money
가 70이 넘으면 before
를 저금해주고 월 month
을 1월 추가준다.
저장한 돈이 70이상이고 100미만일 경우에는 after
를 저금해주면 되고 마찬가지로 월 month
을 1월 추가해주면 되는 간단한 문제다.