CF1582A.Luntik and Concerts
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Luntik has decided to try singing. He has a one-minute songs, b two-minute songs and c three-minute songs. He wants to distribute all songs into two concerts such that every song should be included to exactly one concert.
He wants to make the absolute difference of durations of the concerts as small as possible. The duration of the concert is the sum of durations of all songs in that concert.
Please help Luntik and find the minimal possible difference in minutes between the concerts durations.
输入格式
The first line contains a single integer t ( 1≤t≤1000 ) — the number of test cases.
Each test case consists of one line containing three integers a,b,c (1≤a,b,c≤109) — the number of one-minute, two-minute and three-minute songs.
输出格式
For each test case print the minimal possible difference in minutes between the concerts durations.
输入输出样例
输入#1
4 1 1 1 2 1 3 5 5 5 1 1 2
输出#1
0 1 0 1
说明/提示
In the first test case, Luntik can include a one-minute song and a two-minute song into the first concert, and a three-minute song into the second concert. Then the difference will be equal to 0 .
In the second test case, Luntik can include two one-minute songs and a two-minute song and a three-minute song into the first concert, and two three-minute songs into the second concert. The duration of the first concert will be 1+1+2+3=7 , the duration of the second concert will be 6 . The difference of them is ∣7−6∣=1 .