题解 | #矩阵乘法#

矩阵乘法

http://www.nowcoder.com/practice/ebe941260f8c4210aa8c17e99cbc663b

while True:
    try:
        x = int(input())
        y = int(input())
        z = int(input())
        #m1 = [[0]*x]*y
        m1 = []
        m2 = []
        res = [[0]*z for i in range(x)]
        for i in range(x):
            m1.append(list(map(int,input().split())))#list的append是加为不同的list,+表示合并为一个list
        for i in range(y):
            m2.append(list(map(int,input().split())))
        #print(m2)
        for i in range(x):
            for j in range(y):
                for e in range(z):
                    res[i][e] += m1[i][j] * m2[j][e] #注意是+=不然没有累加算出的只是最后一次计算的结果
        for i in res:
            print(' '.join(map(str,i)))
        #print(res)
    except:
        break
全部评论

相关推荐

不愿透露姓名的神秘牛友
07-07 13:46
点赞 评论 收藏
分享
05-19 19:57
蚌埠学院 Python
2237:Gpa70不算高,建议只写排名,个人技能不在多而在精,缩到8条以内。项目留一个含金量高的,减少间距弄到一页,硕士简历也就一页,本科不要写很多
实习,投递多份简历没人回...
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务