Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
58798 | 蔡璟恒 | 【数组】建立矩阵 | Python3 | Accepted | 54 MS | 5100 KB | 260 | 2023-10-01 15:25:16 |
n=int(input()) arr=[] for x in map(int,input().split()): arr.append(x) ind=0 for i in range (n): tmp=ind for j in range (n): if tmp>n-1: tmp=0 print(arr[tmp],end=" ") tmp+=1 print(" ") ind+=1