310967: CF1915A. Odd One Out
Memory Limit:256 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:2
Solved:0
Description
A. Odd One Outtime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard output
You are given three digits $a$, $b$, $c$. Two of them are equal, but the third one is different from the other two.
Find the value that occurs exactly once.
InputThe first line contains a single integer $t$ ($1 \leq t \leq 270$) — the number of test cases.
The only line of each test case contains three digits $a$, $b$, $c$ ($0 \leq a$, $b$, $c \leq 9$). Two of the digits are equal, but the third one is different from the other two.
OutputFor each test case, output the value that occurs exactly once.
ExampleInput10 1 2 2 4 3 4 5 5 6 7 8 8 9 0 9 3 6 3 2 8 2 5 7 7 7 7 5 5 7 5Output
1 3 6 7 0 6 8 5 5 7
Output
题目大意:从三个数字中找出只出现一次的那个数字。
输入数据格式:第一行输入一个整数t(1≤t≤270),表示测试用例的数量。接下来每一行输入三个数字a, b, c(0≤a, b, c≤9),其中两个数字相等,另一个数字与它们不同。
输出数据格式:对于每个测试用例,输出只出现一次的那个数字。题目大意:从三个数字中找出只出现一次的那个数字。 输入数据格式:第一行输入一个整数t(1≤t≤270),表示测试用例的数量。接下来每一行输入三个数字a, b, c(0≤a, b, c≤9),其中两个数字相等,另一个数字与它们不同。 输出数据格式:对于每个测试用例,输出只出现一次的那个数字。
输入数据格式:第一行输入一个整数t(1≤t≤270),表示测试用例的数量。接下来每一行输入三个数字a, b, c(0≤a, b, c≤9),其中两个数字相等,另一个数字与它们不同。
输出数据格式:对于每个测试用例,输出只出现一次的那个数字。题目大意:从三个数字中找出只出现一次的那个数字。 输入数据格式:第一行输入一个整数t(1≤t≤270),表示测试用例的数量。接下来每一行输入三个数字a, b, c(0≤a, b, c≤9),其中两个数字相等,另一个数字与它们不同。 输出数据格式:对于每个测试用例,输出只出现一次的那个数字。