본문 바로가기
코딩테스트 준비/백준

[백준] 3046번 - R2 [Java]

by mwzz6 2024. 12. 12.

https://www.acmicpc.net/problem/3046

 

[백준] 3046번 - R2 [Java]
[백준] 3046번 - R2 [Java]


1.  아이디어

 

S = (R1 + R2)/2 일 때 R2 = 2 * S - R1 이기 때문에 간단하게 해결할 수 있다.


2. 문제풀이

 

아이디어 그대로 구현만 하면 된다.


3. 코드

 

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));
        StringTokenizer st = new StringTokenizer(br.readLine());

        int R1 = Integer.parseInt(st.nextToken());
        int S = Integer.parseInt(st.nextToken());

        System.out.println(2 * S - R1);
    }
}

4. 후기