题解 | #矩阵乘法#

矩阵乘法

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

乘法就是数组或者二维列表倒置相乘
while True:
    try:
        l1 = int(input())
        l2 = int(input())
        l3 = int(input())

        list1 = []
        list2 = [[] for i in range(l3)]

        for i in range(l1):
            list1.append(list(map(int, input().split())))

        for i in range(l2):
            res = list(map(int, input().split()))
            for n, x in enumerate(res):
                list2[n].append(x)

        res_list = []
        for x, i in enumerate(list1):

            list3 = []
            for p in range(l3):
                n = 0
                for y, j in enumerate(i):
                    n += j * list2[p][y]
                list3.append(n)
            res_list.append(list3)
        # print(list1, list2)
        for i in res_list:
            print(' '.join(list(map(str, i))))
    except EOFError:
        break

全部评论

相关推荐

水墨不写bug:疑似没有上过大学
点赞 评论 收藏
分享
牛客刘北:如果暑期实习是27届的话,你要晚一年才会毕业,企业为什么会等你呢?要搞清时间逻辑呀!27届现在实习只能是在暑假实习,这是日常实习,不是暑期实习。所以多去投日常实习吧,暑期实习肯定不会要你的
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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