加载中

3
0 3 2
3 1 2
11 3 2
2
4 2 0
1 1 1
[[0, 3, 2], [1, 1, 1], [3, 1, 2], [4, 2, 0], [11, 3, 2]]
#向列表lst1和lst2中输入数据
lst1=[]
lst2=[]
for i in range(int(input())):
lst1.append(list(map(int,input().split())))
for i in range(int(input())):
lst2.append(list(map(int,input().split())))
#排序
def merge(lst1,lst2):
i=len(lst1)-1
j=len(lst2)-1
for t in range(len(lst2)):
lst1.append([0,0,0])
k=len(lst1)-1
while __________:
...
...
return lst1
print(merge(lst1,lst2))