Dominant Army Solution Python CodeChef

Dominant Army Solution Python CodeChef 

In the medieval age, there were 

3 kingdoms AB, and C. The army of these kingdom had NANB, and NC soldiers respectively.

You are given that an army with X soldiers can defeat an army with Y soldiers only if X>Y.

An army is said to be dominant if it can defeat both the other armies combined. For example, kingdom C's army will be dominant only if NC>NA+NB.

Determine whether any of the armies is dominant or not.

Input Format

  • The first line contains a single integer T - the number of test cases. Then the test cases follow.
  • The first and only line of each test case contains three integers NANB, and NC - the number of warriors in the armies of kingdoms AB, and C respectively.

Output Format

For each test case, output YES if any of the armies is dominant. Otherwise, output NO.

You may print each character of YES and NO in uppercase or lowercase (for example, yesyEsYes will be considered identical).

Constraints

  • 1T1000
  • 1NA,NB,NC100

Sample Input 1 

4
15 5 6
12 13 16
1 1 100
10 10 20

Sample Output 1 

YES
NO
YES
NO

Explanation

Test case 1: The kingdom A's army is dominant since 15>5+6.

Test case 2: We can observe that none of the armies is dominant.

Test case 3: The kingdom C's army is dominant since 100>1+1.

Test case 4: We can observe that none of the armies is dominant. Note that the kingdom C's army is not dominant since 2010+10.

Dominant Army Solution

Code

Post a Comment

0 Comments