※ 글쓴이는 취미로 코딩을 익혀보는 사람이라 정확하지 않은 내용을 담고 있을 수 있다 ※

 

이번에 볼 문제는 백준 16099번 문제인 Larger Sport Facility이다.
문제는 아래 링크를 확인하자.

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

 

16099번: Larger Sport Facility

In a lot of places in the world, elite universities come in pairs and their students like to challenge each other every year. In England, Oxford and Cambridge are famous for The Boat Race, an annual rowing race that opposes them. In Switzerland, students f

www.acmicpc.net

두 직사각형 영역의 가로와 세로 길이가 주어질 때, 두 영역의 넓이를 비교해 적절한 문자열을 출력하는 문제이다.

 

예제의 출력에는 보이지 않지만, 두 영역의 넓이가 같은 경우 "Tie"를 출력해야 한다는 조건을 빼먹지 말고 구현하자.

 

한편, 각 영역의 넓이는 32비트 정수 자료형이 담을 수 있는 수의 범위를 넘어갈 수 있으므로 유의하자.

 

아래는 제출한 소스코드이다.

#include <iostream>
using namespace std;
typedef long long ll;

int main() {
	ios::sync_with_stdio(0);
	cin.tie(0);

	int T; cin >> T;
	while (T--) {
		ll w1, h1, w2, h2; cin >> w1 >> h1 >> w2 >> h2;
		if (w1 * h1 > w2 * h2) cout << "TelecomParisTech\n";
		else if (w1 * h1 < w2 * h2) cout << "Eurecom\n";
		else cout << "Tie\n";
	}
}
728x90

'BOJ' 카테고리의 다른 글

[BOJ 7582 // C++] On the Bus  (0) 2022.11.13
[BOJ 3512 // C++] Flat  (0) 2022.11.12
[BOJ 3085 // C++] 사탕 게임  (0) 2022.11.12
[BOJ 24623 // C++] Изгороди  (0) 2022.11.12
[BOJ 25277 // C++] Culture shock  (0) 2022.11.11

+ Recent posts