• A. XOR Mixup


    time limit per test

    1 second

    memory limit per test

    256 megabytes

    input

    standard input

    output

    standard output

    There is an array aa with n−1n−1 integers. Let xx be the bitwise XOR of all elements of the array. The number xx is added to the end of the array aa (now it has length nn), and then the elements are shuffled.

    You are given the newly formed array aa. What is xx? If there are multiple possible values of xx, you can output any of them.

    Input

    The input consists of multiple test cases. The first line contains an integer tt (1≤t≤10001≤t≤1000) — the number of test cases. The description of the test cases follows.

    The first line of each test case contains an integer nn (2≤n≤1002≤n≤100) — the number of integers in the resulting array aa.

    The second line of each test case contains nn integers a1,a2,…,ana1,a2,…,an (0≤ai≤1270≤ai≤127) — the elements of the newly formed array aa.

    Additional constraint on the input: the array aa is made by the process described in the statement; that is, some value of xx exists.

    Output

    For each test case, output a single integer — the value of xx, as described in the statement. If there are multiple possible values of xx, output any of them.

    Example

    input

    Copy

     
    

    4

    4

    4 3 2 5

    5

    6 1 10 7 10

    6

    6 6 6 6 6 6

    3

    100 100 0

    output

    Copy

    3
    7
    6
    0
    

    Note

    In the first test case, one possible array aa is a=[2,5,4]a=[2,5,4]. Then x=2⊕5⊕4=3x=2⊕5⊕4=3 (⊕⊕ denotes the bitwise XOR), so the new array is [2,5,4,3][2,5,4,3]. Afterwards, the array is shuffled to form [4,3,2,5][4,3,2,5].

    In the second test case, one possible array aa is a=[1,10,6,10]a=[1,10,6,10]. Then x=1⊕10⊕6⊕10=7x=1⊕10⊕6⊕10=7, so the new array is [1,10,6,10,7][1,10,6,10,7]. Afterwards, the array is shuffled to form [6,1,10,7,10][6,1,10,7,10].

    In the third test case, all elements of the array are equal to 66, so x=6x=6.

    In the fourth test case, one possible array aa is a=[100,100]a=[100,100]. Then x=100⊕100=0x=100⊕100=0, so the new array is [100,100,0][100,100,0]. Afterwards, the array is shuffled to form [100,100,0][100,100,0]. (Note that after the shuffle, the array can remain the same.)

    解题说明:此题找规律就能发现输出任意一个数即可。

    1. #include
    2. int main()
    3. {
    4. int t, n;
    5. scanf("%d", &t);
    6. while (t--)
    7. {
    8. scanf("%d", &n);
    9. int a[105], i;;
    10. for (i = 0; i
    11. {
    12. scanf("%d", &a[i]);
    13. }
    14. printf("%d\n", a[n - 1]);
    15. }
    16. return 0;
    17. }

  • 相关阅读:
    Windows 下 Qt 可执行程序添加默认管理员权限启动(QMAKE、MinGW & MSVC)
    文件IO操作
    golang 函数式编程库samber/mo使用: IO
    解决Flutter位于悬浮窗口时,应用Logo不更新问题
    【布里渊现象】光纤布里渊温度和应变分布同时测量系统研究
    依赖注入(Dependency Injection, DI)在 iOS 开发中的应用
    空值的排序规则与性能
    ConfigurationClassPostProcessor 如何放入processors中
    区块链真的离不开预言机吗?
    PAT 1036 Boys and Girls
  • 原文地址:https://blog.csdn.net/jj12345jj198999/article/details/126336243