Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
153212 杨嘉陆 数组转置 Python3 Wrong Answer 41 MS 3772 KB 256 2026-05-10 13:59:07

Tests(0/1):


Code:

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


Run Info:

------Input------
1 2 2359 23 439 2 239 309 13
------Answer-----
1 23 239 2 439 309 2359 2 13
------Your output-----
1 2 2359 23 439 309 239 309 13