1024: [编程入门]矩阵对角线求和 摘要:解题思路:注意事项:参考代码:arr = [list(map(int, input().split())) for _ in range(3)] x, y = 0, 0 for i in rang…… 题解列表 2024年04月17日 0 点赞 0 评论 131 浏览 评分:0.0
矩阵对角线求和 摘要:解题思路:注意事项:参考代码:ls = []for i in range(3): a = list(map(int,input().split())) ls.append(a)i = ls…… 题解列表 2024年03月16日 0 点赞 0 评论 110 浏览 评分:0.0
1024: [编程入门]矩阵对角线求和 摘要:```python l = [] sum_zhu = 0 sum_fu=0 for i in range(3): l1 = list(map(int,input().split())…… 题解列表 2023年12月20日 0 点赞 0 评论 77 浏览 评分:0.0
矩阵对角线求和 摘要: x1,x2,x3 = map(int,input().split()) x4,x5,x6 = map(int,input().split()) x7,x8,x9 = map(int,inp…… 题解列表 2023年11月12日 0 点赞 0 评论 368 浏览 评分:6.0
矩阵对角线求和 摘要:解题思路:注意事项:参考代码:a = list(map(int,input().split()))b = list(map(int,input().split()))c = list(map(int,…… 题解列表 2023年04月03日 0 点赞 0 评论 68 浏览 评分:0.0
[编程入门]矩阵对角线求和,最容易理解的解法,非常暴力 摘要:解题思路:注意事项:没有丝毫含金量参考代码:x=list(map(int,input().split()))y=list(map(int,input().split()))z=list(map(int…… 题解列表 2022年10月23日 1 点赞 0 评论 724 浏览 评分:10.0
[编程入门]矩阵对角线求和--朴素方法 摘要:解题思路:将矩阵的每一行转变成一个列表,最后利用相应列表的元素相加求解注意事项:参考代码:m=list(map(int,input().split()))n=list(map(int,input().…… 题解列表 2022年09月13日 0 点赞 0 评论 133 浏览 评分:0.0
编写题解 1024: [编程入门]矩阵对角线求和 摘要:解题思路:注意事项:参考代码:my_list=[]for m in range(3): j=[] a,b,c=map(int,input().split()) j.append(a)…… 题解列表 2022年07月02日 0 点赞 0 评论 641 浏览 评分:9.9
1024: [编程入门]矩阵对角线求和 摘要:解题思路:注意事项:小弟代码先奉上为敬: a = list(map(int,input().split()))b = list(map(i…… 题解列表 2022年05月02日 0 点赞 0 评论 828 浏览 评分:9.9
[编程入门]矩阵对角线求和-题解(python代码) 摘要:解题思路: 放入列表中巧妙输出。注意事项:参考代码:lst1 = []for i in range(3): lst2 = list(map(int, input().split())) …… 题解列表 2022年01月24日 0 点赞 0 评论 390 浏览 评分:7.3