题解列表

筛选

不懂可评论

摘要:解题思路:注意事项:参考代码:class Date:    def __init__(sel……

不懂可评论

摘要:解题思路:注意事项:参考代码:def Compare(a, b):    if&nb……

七行代码解决问题

摘要:解题思路:用字符串解决问题注意事项:无参考代码:a=input()print(len(a))foriinrange(len(a)):  print(a[i],end……

不懂可评论

摘要:解题思路:注意事项:参考代码:class Time:    def __init__(sel……

结构体之成绩统计2

摘要:解题思路:在初始化的时候有些复杂,暂时想不出更好的方法注意事项:参考代码:a=int(input())c1=0c2=0c3=0sz=0s1=0s2=0s3=0x=""foriinr……

海伦公式秒杀

摘要:解题思路:注意事项:参考代码: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))……

三行秒杀大象喝水

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