Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
153211 6倪葭轩 数组转置 Python3 Wrong Answer 39 MS 3772 KB 183 2026-05-10 13:57:36

Tests(0/1):


Code:

b=[] c=[] for i in range(3): b = input().split() b = [int(x) for x in b] c.append(b) for i in range(3): for j in range(3): c[i][j] = c[j][i] print(c)


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, 23, 239], [23, 439, 309], [239, 309, 13]]