CF1915A.Odd One Out

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You are given three digits aa , bb , cc . Two of them are equal, but the third one is different from the other two.

Find the value that occurs exactly once.

输入格式

The first line contains a single integer tt ( 1t2701 \leq t \leq 270 ) — the number of test cases.

The only line of each test case contains three digits aa , bb , cc ( 0a0 \leq a , bb , c9c \leq 9 ). Two of the digits are equal, but the third one is different from the other two.

输出格式

For each test case, output the value that occurs exactly once.

输入输出样例

  • 输入#1

    10
    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 5

    输出#1

    1
    3
    6
    7
    0
    6
    8
    5
    5
    7
首页