cxxiaoguo


私信TA

用户名:guowenwu

访问量:32805

签 名:

累死自己卷死你们

等  级
排  名 131
经  验 7634
参赛次数 8
文章发表 62
年  龄 0
在职情况 学生
学  校 成都信息工程大学
专  业 人工智能

  自我简介:

TA的其他文章

解题思路:
直接输出即可
注意事项:

参考代码:


import java.util.Scanner;



public class Main {

public static void main(String[] args) {

Scanner input = new Scanner(System.in);

int n=input.nextInt(),m=input.nextInt();

int a[]=new int[n];

int b[]=new int[m];

for (int i = 0; i <n; i++) {

a[i]=input.nextInt();

}

for (int i = 0; i <m; i++) {

b[i]=input.nextInt();

}

int k=input.nextInt(),q=input.nextInt();

if(q==0){

for (int i = 0; i <n-1; i++) {

System.out.print(a[i]+",");

}

System.out.print(a[n-1]);

return;

}

for (int i = 0; i <k+q-1; i++) {

if(i<k)

System.out.print(a[i]+",");

else{

System.out.print(b[i-k]+",");

}

}

if(k+q>=n){

System.out.println(b[q-1]);

}

else{

System.out.print(b[q-1]+",");

for (int i = k+q; i <n-1; i++) {

System.out.print(a[i]+",");

}

System.out.print(a[n-1]);

}

}

}



 

0.0分

0 人评分

  评论区

  • «
  • »