啊分


私信TA

用户名:761813936fzh

访问量:2390

签 名:

等  级
排  名 2977
经  验 2079
参赛次数 0
文章发表 31
年  龄 0
在职情况 学生
学  校 新乡学院
专  业

  自我简介:

TA的其他文章

解题思路:

注意事项:

参考代码:

def f(a, x, b, y):
   if y>=len(a)-x:
       a=a[:x]+b[:y]
   else:
       a=a[:x]+b[:y]+a[x+y:]
   return a
n,m=map(int,input().split())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
x,y=map(int,input().split())
li=f(a,x,b,y)
for i in li[:-1]:
   print(i,end=",")
print(li[-1])

 

0.0分

1 人评分

  评论区

  • «
  • »