题解 | #矩阵乘法#

矩阵乘法

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

while True:
    try:
        x, y, z = int(input()), int(input()), int(input())
        lst1, lst2, lst3 = [], [], []
        for _ in range(x):
            lst1.append(list(map(int, input().split())))
        for _ in range(y):
            lst2.append(list(map(int, input().split())))
        for a in lst1:
            temp = []
            for i in range(z):
                b = []
                for elt in lst2:
                    b.append(elt[i])
                Sum = 0
                for pair in zip(a, b):
                    Sum += pair[0] * pair[1]
                temp.append(Sum)
            lst3.append(temp)
        for i in lst3:
            print(' '.join(map(str, i)))
    except:
        break
全部评论

相关推荐

kl_我是东山啊:《相关公司:阿里巴巴》
投递阿里巴巴等公司10个岗位
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务