Uknow's Lab.
article thumbnail

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

 

16099번: Larger Sport Facility

The input consists of several test cases. The first line contains an integer indicating the number of test cases. Each test case follows. Each test case consists of a single line containing 4 integers 1 ≤ lt, wt, le, we ≤ 109 separated by single spaces

www.acmicpc.net

 

난이도 : 브론즈 5
태그 : 수학, 사칙연산

 

 

설명

두 개의 스포츠 시설을 비교하고 더 큰 시설을 출력하는 문제입니다.

 

 

 

소스코드

fun main() {
    repeat(readLine()!!.toInt()) {
        val (t1, t2, u1, u2) = readLine()!!.split(" ").map { it.toLong() }
        println(if (t1 * t2 > u1 * u2) "TelecomParisTech" else if (t1 * t2 < u1 * u2) "Eurecom" else "Tie")
    }
}

 

가로 세로 길이를 입력받아 더 큰 넓이의 시설을 출력합니다.

 

만약 넓이가 동일할경우 Tie를 출력합니다.

 

 

후기

 

프로그래밍 언어와 영어 공부를 동시에 할 수 있는 문제였습니다.

profile

Uknow's Lab.

@유노 Uknow

인생은 Byte와 Double 사이 Char다. 아무말이나 해봤습니다.