PS/BOJ

[백준 BOJ] 8370 Plane

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

링크

www.acmicpc.net/problem/8370

 

8370번: Plane

In the first and only line of the standard input there are four integers n1, k1, n2 and k2 (1 ≤ n1, k1, n2, k2 ≤ 1 000), separated by single spaces.

www.acmicpc.net

풀이

입력으로 business class 좌석의 행과 열이, economic class 좌석의 행과 열이 주어진다.

모든 좌석의 개수를 출력하면 된다.

 

n1*k1 + n2*k2

 

코드

//8370_Plane
#include <cstdio>
using namespace std;

int n1, k1, n2, k2;

int main() {
	scanf("%d %d %d %d", &n1, &k1, &n2, &k2);

	printf("%d\n", n1*k1 + n2*k2);

	return 0;
}

반응형

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

[백준 BOJ] 14652 나는 행복합니다~  (0) 2021.03.07
[백준 BOJ][Python] 8437 Julka  (0) 2021.03.05
[백준 BOJ] 6749 Next in line  (0) 2021.03.05
[백준 BOJ] 2475 검증수  (0) 2021.02.23
[백준 BOJ][Python] 2338 긴자리 계산  (0) 2021.02.23