题解 | #牛牛的快递#

牛牛的快递

https://www.nowcoder.com/practice/41b42e7b3c3547e3acf8e90c41d98270

from math import ceil

weight,urgent = input().split()

fee = 20
weight = float(weight)

if weight > 1:
    beyond_weight = weight - 1
    
    beyond_weight = ceil(beyond_weight)
    
    fee += beyond_weight

if urgent == 'y':
    fee += 5

print(fee)

#python##刷题#
全部评论

相关推荐

11-18 09:44
Java
小白也想要offer:简历别放洋屁,搞不还还放错了,当然你投外企除外,以上纯属个人观点
点赞 评论 收藏
分享
1 收藏 评论
分享
牛客网
牛客企业服务