NC233099. 瑞雪
描述
输入描述
三个正整数 ,用空格隔开。其中
输出描述
小红最多的雪球数量
示例1
输入:
1 1 5
输出:
4
说明:
第5秒时小紫可以攒5个球,会对小红发起攻击。所以小红需要在第4秒发起攻击,此时小红共有4个雪球。pypy3 解法, 执行用时: 125ms, 内存消耗: 26612K, 提交时间: 2022-01-31 20:04:22
x, y, a = map(int, input().split()) print((a * y - 1) // x)
Python3 解法, 执行用时: 43ms, 内存消耗: 4736K, 提交时间: 2022-02-02 16:53:31
x,y,a=map(int,input().split()) print((y*a-1)//x)