Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
153466 6倪葭轩 矩阵倒序输出 Python3 Wrong Answer 44 MS 3764 KB 225 2026-05-17 13:35:05

Tests(0/2):


Code:

m,n=list(map(int,input().split())) a=[] for i in range(m): tmp=list(map(int,input().split())) a.append(tmp) b=[] for i in range(m): for j in range(n-1,-1,-1): print(a[i][j],end=" ") print(b)


Run Info:

------Input------
3 3 1 2 3 4 5 6 7 8 9
------Answer-----
3 2 1 6 5 4 9 8 7
------Your output-----
3 2 1 6 5 4 9 8 7 []