PS/BOJ

[백준 BOJ] 6749 Next in line

Jubil 2021. 3. 5. 18:00
반응형

링크

www.acmicpc.net/problem/6749

 

6749번: Next in line

You know a family with three children. Their ages form an arithmetic sequence: the difference in ages between the middle child and youngest child is the same as the difference in ages between the oldest child and the middle child. For example, their ages c

www.acmicpc.net

 

풀이

첫 줄에 막내의 나이가, 두번 째 줄에 둘째의 나이가 주어진다.

세 명의 아이의 나이가 등차수열이라는 것을 이용하여 첫째의 나이를 구하면 된다.

 

둘째 + (둘째 - 첫째)가 첫째의 나이일 것이다.

 

코드

//6749_Next in line
#include <cstdio>
using namespace std;

int a, b;

int main() {
	scanf("%d %d", &a,&b);

	printf("%d\n", b + (b - a));

	return 0;
}

반응형

'PS > BOJ' 카테고리의 다른 글

[백준 BOJ][Python] 8437 Julka  (0) 2021.03.05
[백준 BOJ] 8370 Plane  (0) 2021.03.05
[백준 BOJ] 2475 검증수  (0) 2021.02.23
[백준 BOJ][Python] 2338 긴자리 계산  (0) 2021.02.23
[백준 BOJ] 1550 16진수  (0) 2021.02.23