# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # 返回牛牛能喝的最多的酒 # @param m int整型 酒单价 # @param n int整型 牛牛的现金 # @return int整型 # class Solution: def countWine(self , m , n ): # write code here ans = n//m b = ans g = ans while b > 1&nbs***bsp;g > 3: x = b//2 y = g//4 b = b//2 + b%2 + y g = g//4 + g%4 + x ans = ans + x +y return ans
全部评论
(0) 回帖