CF1900B.Laura and Operations
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Laura is a girl who does not like combinatorics. Nemanja will try to convince her otherwise.
Nemanja wrote some digits on the board. All of them are either 1 , 2 , or 3 . The number of digits 1 is a . The number of digits 2 is b and the number of digits 3 is c . He told Laura that in one operation she can do the following:
- Select two different digits and erase them from the board. After that, write the digit ( 1 , 2 , or 3 ) different from both erased digits.
For example, let the digits be 1 , 1 , 1 , 2 , 3 , 3 . She can choose digits 1 and 3 and erase them. Then the board will look like this 1 , 1 , 2 , 3 . After that, she has to write another digit 2 , so at the end of the operation, the board will look like 1 , 1 , 2 , 3 , 2 .
Nemanja asked her whether it was possible for only digits of one type to remain written on the board after some operations. If so, which digits can they be?
Laura was unable to solve this problem and asked you for help. As an award for helping her, she will convince Nemanja to give you some points.
输入格式
Each test contains multiple test cases. The first line contains the number of test cases t ( 1≤t≤105 ). The description of the test cases follows.
The first and only line of each test case contains three integers a , b , c ( 1≤a,b,c≤100 ) — the number of ones, number of twos, and number of threes, respectively.
输出格式
For each test case, output one line containing 3 integers.
The first one should be 1 if it is possible that after some operations only digits 1 remain on the board, and 0 otherwise.
Similarly, the second one should be 1 if it is possible that after some operations only digits 2 remain on the board, and 0 otherwise.
Similarly, the third one should be 1 if it is possible that after some operations only digits 3 remain on the board, and 0 otherwise.
输入输出样例
输入#1
3 1 1 1 2 3 2 82 47 59
输出#1
1 1 1 0 1 0 1 0 0
说明/提示
In the first test case, Laura can remove digits 2 and 3 and write digit 1 . After that, the board will have 2 digits 1 . She can make it have only digits 2 or 3 left by performing a similar operation.
In the second test case, she can remove digits 1 and 3 and write a digit 2 . After performing that operation 2 times, the board will have only digits 2 left. It can be proven that there is no way to have only digits 1 or only digits 3 left.
In the third test case, there is a sequence of operations that leaves only digits 1 on the board. It can be proven that there is no way to have only digits 2 or only digits 3 left.