题解列表

筛选

人见人爱A+B(模拟)

摘要:解题思路:模拟注意事项:参考代码:#include<iostream>#include<cmath>usingnamespacestd;co……

不容易系列(递推)

摘要:解题思路:递推注意事项:参考代码:#include<iostream>#include<cmath>usingnamespacestd;in……

上车人数(模拟 + 递推)

摘要:解题思路:递推系数规律, 计算第二站上下车人数, 按照递推公式计算第x站人数注意事项:第n站下车的人数是第n-1站出发时的人数参考代码:#include<iostream>#inclu……

矩阵对角线求和python

摘要:参考代码:a=[list(map(int,input().split()) ) for _ in range(3)]s,w=0,0for i in range(len(a)): &nbs……

三进制小数(模拟)

摘要:解题思路:模拟注意事项:进位参考代码:#include<iostream>#include<cmath>usingnamespacestd;……