본문 바로가기
Algorithm/수학

[백준][3046번][수학] R2

by 우툴 2016. 4. 24.
728x90

R2

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

<코드>

1
2
3
4
5
6
7
#include <stdio.h>
 
int main(void){
    int R1, S;
    scanf("%d %d", &R1, &S);
    printf("%d\n"2 * S - R1);
}
cs

<문제 푼 요령>

1. 간단하다 2개의 숫자니 평균은 (R1+R2)/2 = S 이다 즉 R2 = 2*S -R1 이 되는 것이다.

728x90

댓글