李耀文3681
李耀文3681
全部文章
分类
题解(87)
归档
标签
去牛客网
登录
/
注册
李耀文3681的博客
全部文章
(共2篇)
题解 | #矩阵乘法#
import sys while True: try: x = int(input().strip()) y = int(input().strip()) z = int(input().strip()) #分别保存A,B矩阵 ...
字符串
矩阵
数组
2021-07-08
0
397
题解 | #矩阵乘法计算量估算#
import sys #矩阵相乘的乘法数,和结果矩阵 def com_count(listA, listB): count = listA[0] * listA[1] * listB[1] listC = [listA[0], listB[1]] return count, ...
矩阵
字符串
栈
2021-07-02
0
411