题解列表

筛选

[python]动态规划&遍历

摘要:# 问题描述 ![在这里插入图片描述](https://img-blog.csdnimg.cn/e2212520b81a4e519572ca74fb4d371d.png?x-oss-process=……

还行,一般般吧

摘要:解题思路:注意事项:参考代码:lst1=[list(map(int,input().split()))for i in range(3)]lst2=[]for m in range(3):    fo……

还行,一般般吧

摘要:解题思路:注意事项:参考代码:def hanshu(a, b, c):    det = b ** 2 - 4 * a * c    if det > 0:        x1 = (-b + pow……

1015: [编程入门]求和训练

摘要:解题思路:注意事项:参考代码:a, b, c = list(map(int, input().split()))sum1 = 0sum2 = 0sum3 = 0for i in range(1, a+……