| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 153467 | 6倪葭轩 | 矩阵倒序输出 | Python3 | Accepted | 42 MS | 3772 KB | 224 | 2026-05-17 13:36:06 |
m,n=list(map(int,input().split())) a=[] for i in range(m): tmp=list(map(int,input().split())) a.append(tmp) for i in range(m): for j in range(n-1,-1,-1): print(a[i][j],end=" ") print()