CF1279A.New Year Garland

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Polycarp is sad — New Year is coming in few days but there is still no snow in his city. To bring himself New Year mood, he decided to decorate his house with some garlands.

The local store introduced a new service this year, called "Build your own garland". So you can buy some red, green and blue lamps, provide them and the store workers will solder a single garland of them. The resulting garland will have all the lamps you provided put in a line. Moreover, no pair of lamps of the same color will be adjacent to each other in this garland!

For example, if you provide 33 red, 33 green and 33 blue lamps, the resulting garland can look like this: "RGBRBGBGR" ("RGB" being the red, green and blue color, respectively). Note that it's ok to have lamps of the same color on the ends of the garland.

However, if you provide, say, 11 red, 1010 green and 22 blue lamps then the store workers won't be able to build any garland of them. Any garland consisting of these lamps will have at least one pair of lamps of the same color adjacent to each other. Note that the store workers should use all the lamps you provided.

So Polycarp has bought some sets of lamps and now he wants to know if the store workers can build a garland from each of them.

输入格式

The first line contains a single integer tt ( 1t1001 \le t \le 100 ) — the number of sets of lamps Polycarp has bought.

Each of the next tt lines contains three integers rr , gg and bb ( 1r,g,b1091 \le r, g, b \le 10^9 ) — the number of red, green and blue lamps in the set, respectively.

输出格式

Print tt lines — for each set of lamps print "Yes" if the store workers can build a garland from them and "No" otherwise.

输入输出样例

  • 输入#1

    3
    3 3 3
    1 10 2
    2 1 1
    

    输出#1

    Yes
    No
    Yes
    

说明/提示

The first two sets are desribed in the statement.

The third set produces garland "RBRG", for example.

首页