题解列表

筛选

两行直接秒

摘要:解题思路:map输入三数print输出首项+d*(n-1)注意事项:参考代码:a1,a2,n=map(int,input().split())print(a1+(a2-a1)*(n-1))……

海伦公式秒杀

摘要:解题思路:注意事项:参考代码:importmathnum=list(map(float,input().split()))a=math.sqrt((num[3]-num[1])**2+(num[2]-……

不废话直接秒

摘要:解题思路:floor函数向下取整注意事项:参考代码:importmathn,x,y=map(int,input().split())print(math.floor(n-1/x*y))……

瞎七八解释的挺清楚的了

摘要:解题思路:1. 我们需要每次消耗多少能量才能达到体力最大值?每次消耗m/n个能量就会让体力达到最大值,体力最大值恒定不变为5;但是由于我们每次消耗能量至少一个,所以实际上我们要让体力……

三行秒杀大象喝水

摘要:解题思路:map函数接收输入注意事项:至少喝几桶水用向上取整参考代码:importmathh,r=map(int,input().split())print(math.ceil(20000/(h*ma……