307677: CF1395A. Boboniu Likes to Color Balls
Memory Limit:256 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Boboniu Likes to Color Balls
题意翻译
波波牛给了你 $r$ 个红球,$g$ 个绿球,$b$ 个蓝球,$w$ 个白球。你可以将它们随便排列。 你可以任意多次进行如下操作: - 取一个红球,一个绿球,一个蓝球,然后将它们全部变成白球 最后,你需要告诉波波牛你是否能将球的序列变为一个回文序列。 By Dzhao题目描述
Boboniu gives you - $ r $ red balls, - $ g $ green balls, - $ b $ blue balls, - $ w $ white balls. He allows you to do the following operation as many times as you want: - Pick a red ball, a green ball, and a blue ball and then change their color to white. You should answer if it's possible to arrange all the balls into a palindrome after several (possibly zero) number of described operations.输入输出格式
输入格式
The first line contains one integer $ T $ ( $ 1\le T\le 100 $ ) denoting the number of test cases. For each of the next $ T $ cases, the first line contains four integers $ r $ , $ g $ , $ b $ and $ w $ ( $ 0\le r,g,b,w\le 10^9 $ ).
输出格式
For each test case, print "Yes" if it's possible to arrange all the balls into a palindrome after doing several (possibly zero) number of described operations. Otherwise, print "No".
输入输出样例
输入样例 #1
4
0 1 1 1
8 1 9 3
0 0 0 0
1000000000 1000000000 1000000000 1000000000
输出样例 #1
No
Yes
Yes
Yes