이분탐색
-
[백준] 2143 두 배열의 합 #JAVA #이분탐색Algorithm Solving/BAEKJOON 2021. 11. 18. 20:39
[백준] 2143 두 배열의 합 #JAVA 코드 import java.io.*; import java.util.*; public class Main { public static void main(String[] args) throws IOException{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int[] arrA, arrB; int[] subArrA, subArrB; StringTokenizer stA,stB; long total = 0; // 21억개를 초과하는 경우가 존재 int T = Integer.parseInt(br.readLine()); int N = Integer.parseInt(br.readLin..