CF1395A-Boboniu Likes to Color Balls
目录
CF1395A-Boboniu Likes to Color Balls
题目:
题目描述:
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:
|
|
样例输出 1:
|
|
思路:
实现:
|
|