题解 | 牛牛的快递
牛牛的快递
https://www.nowcoder.com/practice/41b42e7b3c3547e3acf8e90c41d98270
from math import ceil
information = list(map(str, input().split()))
def price_compute(weight, emergency):
if float(weight) <= 1:
price = 20
else:
price = 20 + ceil(float(weight)-1) * 1 #向上取整
if emergency == 'y':
price += 5
return price
price = price_compute(information[0], information[1])
print(int(price))
查看8道真题和解析