자바 백준 1072번실버 3https://www.acmicpc.net/problem/1072 문제 보기분류: 수학, 이분 탐색 코드 풀이import java.util.Scanner;public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); // 게임 횟수와 이긴 게임 수를 입력 long X = sc.nextLong(); long Y = sc.nextLong(); // 추가 게임 횟수를 계산하는 메서드 호출 long additionalGames = findAddition..