[BOJ] 3046
R2
3046번 https://www.acmicpc.net/problem/3046
분류
-
Bronze 5
- 수학
- 구현
- 사칙연산
해법
R2 가 2*S - R1 을 이용하면 됩니다.
정답 코드
#include <iostream>
using namespace std;
int main(void)
{
int R1, S;
cin >> R1 >> S; // S is (R1 + R2) / 2
cout << 2*S - R1; // R2 is 2*S - R1
return 0;
}
Leave a comment