Search
Duplicate
📗

Larger Sport Facility

주차
문제번호
16099
언어
C++
티어
브론즈
유형
수학
사칙연산
nj_Blog
nj_상태
이해도
100%
풀이
사람
이해도 2
13 more properties

문제접근

자료형 범위 체크
크기가 어디가 큰지, 같은지에 따라 알맞은 출력값 출력

놓쳤던 부분

크기가 같은 경우에 대한 문제 조건 충족하지 않음

코드

2020 KB

0 ms

#include <iostream> using namespace std; int main(void) { int n; long long lt, wt, le, we; ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0); cin >> n; for (int i = 0; i < n; i++) { cin >> lt >> wt >> le >> we; if (lt * wt < le * we) cout << "Eurecom\n"; else if (lt * wt == le * we) cout << "Tie\n"; else cout << "TelecomParisTech\n"; } return (0); }
C++
복사