题解列表

筛选

编写题解 1669: 求圆的面积

摘要:解题思路:导入math库,进行求面积之后,注意输出小数点后两位注意事项:导入math库参考代码:import matha = float(input())p = math.pis = a*a*ppri……

小南解题--纸张尺寸--58ms

摘要:zgn946  13:48 2022/6/12省赛时写的--小南'''for i in range(9):    d=[max(b,c)//2,min(b,c)]    d.s……

1183: 人见人爱A+B

摘要:解题思路:注意事项:参考代码:n=int(input())for i in range(n):    a,b,c,d,e,f=map(int,input().split())    s=(c+f)%6……

生日日数——python

摘要:解题思路:注意事项:参考代码:def f(year1):    if (year1 % 100 != 0 and year1 % 4 == 0) or year1 % 400 == 0:       ……