본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 24087번 アイスクリーム (Ice Cream)

by 현장 2022. 1. 16.

-코드

from math import ceil
s = int(input())
a = int(input())
b = int(input())
if s >= a:
    print(250 + ceil((s - a) / b) * 100)
else:
    print(250)