Written by
java-style
on
on
[백준 / 11728] 배열 합치기 - JAVA
[백준 / 11728] 배열 합치기 - JAVA
728x90
반응형
import java.io.*; import java.util.*; public class Main { public static void main(String[] args) throws IOException { Scanner sc = new Scanner(System.in); int[] a = new int[sc.nextInt()]; int[] b = new int[sc.nextInt()]; for (int j = 0; j
728x90
반응형
from http://soobinhand.tistory.com/73 by ccl(A) rewrite - 2021-11-18 15:27:43