| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 128208 | 赵乘浩 | 矩阵加法 | Python3 | Compile Error | 0 MS | 0 KB | 238 | 2025-08-10 09:58:21 |
m,n = input().split() n,m = int(n),int(m) a=[] b=[] for i in range(n): j=input().split() j=[int(t) for t in j] b.append(j) for i in range(n): for j in range(m): a[i][j]+b[i][j] print(a[i][j],end=' ') print()
Sorry: TabError: inconsistent use of tabs and spaces in indentation (Main.py, line 15)