728x90
https://www.acmicpc.net/problem/3046
[문제]
[코드]
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int R1 = sc.nextInt();
int S = sc.nextInt();
int R2 = S*2-R1;
System.out.println(R2);
sc.close();
}
}
[설명]
1. R1과 S를 입력 받는다.
2. R2를 구하기 위해서는 S에 2를 곱하고 곱한 수에 R1을 빼주면 된다.
3. R2를 출력한다.
[결과]
728x90
'백준(Baekjoon)' 카테고리의 다른 글
[백준] 9498번: 시험 성적 - 자바 (0) | 2022.03.21 |
---|---|
[백준] 5543번: 상근날드 - 자바 (0) | 2022.03.20 |
[백준] 2475번: 검증수 - 자바 (0) | 2022.03.15 |
[백준] 2338번: 긴자리 계산 - 자바 (0) | 2022.03.14 |
[백준] 1271번: 엄청난 부자2 - 자바 (0) | 2022.03.14 |