Run ID:83805
提交时间:2024-07-14 22:24:48
n,i,j = map(int,input().split()) res =[] for col in range(1,n+1): res.append("({},{})".format(i,col)) res1 = " ".join(res) res.clear() for row in range(1,n+1): res.append("({},{})".format(row,j)) res2 = " ".join(res) res.clear() i0=i;j0=j while i0>1 and j0>1: i0-=1 j0-=1 res.append("({},{})".format(i0, j0)) while i0<n and j0<n: i0+=1 j0+=1 res.append("({},{})".format(i0, j0)) res3 = " ".join(res) # res.clear() # for x in range(1,n+1): # for y in range(1,n+1): # if x-y == i-j: # res.append("({},{})".format(x, y)) # res3 = " ".join(res) res.clear() i0=i;j0=j while i0<n and j0>1: i0+=1 j0-=1 res.append("({},{})".format(i0, j0)) while i0>1 and j0<n: i0-=1 j0+=1 res.append("({},{})".format(i0, j0)) res4 = " ".join(res) print(res1) print(res2) print(res3) print(res4)