A. Mocha and Math(codeforces#738(div2))

简介: A. Mocha and Math(codeforces#738(div2))

A. Mocha and Math


time limit per test


1 second


memory limit per test


256 megabytes


input


standard input


output


standard output


Mocha is a young girl from high school. She has learned so much interesting knowledge from her teachers, especially her math teacher. Recently, Mocha is learning about binary system and very interested in bitwise operation.


This day, Mocha got a sequence aa of length nn. In each operation, she can select an arbitrary interval [l,r][l,r] and for all values ii (0≤i≤r−l0≤i≤r−l), replace al+ial+i with al+i&ar−ial+i&ar−i at the same time, where && denotes the bitwise AND operation. This operation can be performed any number of times.


For example, if n=5n=5, the array is [a1,a2,a3,a4,a5][a1,a2,a3,a4,a5], and Mocha selects the interval [2,5][2,5], then the new array is [a1,a2&a5,a3&a4,a4&a3,a5&a2][a1,a2&a5,a3&a4,a4&a3,a5&a2].


Now Mocha wants to minimize the maximum value in the sequence. As her best friend, can you help her to get the answer?


Input


Each test contains multiple test cases.


The first line contains a single integer tt (1≤t≤1001≤t≤100) — the number of test cases. Each test case consists of two lines.


The first line of each test case contains a single integer nn (1≤n≤1001≤n≤100) — the length of the sequence.


The second line of each test case contains nn integers a1,a2,…,ana1,a2,…,an (0≤ai≤1090≤ai≤109).


Output


For each test case, print one integer — the minimal value of the maximum value in the sequence.


Example


input

Copy

4

2

1 2

3

1 1 3

4

3 11 3 7

5

11 7 15 3 7


output

Copy

0

1

3

3


Note


In the first test case, Mocha can choose the interval [1,2][1,2], then the sequence becomes [0,0][0,0], where the first element is 1&21&2, and the second element is 2&12&1.


In the second test case, Mocha can choose the interval [1,3][1,3], then the sequence becomes [1,1,1][1,1,1], where the first element is 1&31&3, the second element is 1&11&1, and the third element is 3&13&1.


题意分析,就是全部&;

 

#include <bits/stdc++.h>
using namespace std;
const int maxn=3e5+10;
typedef long long ll;
int a[maxn],b[maxn];
int main()
{
    int t;
    cin>>t;
    while(t--)
    {
        int n;
        cin>>n;
        for(int i=0;i<n;i++)
            scanf("%d",&a[i]);
        int ans=a[0];
        for(int i=0;i<n;i++)
            ans&=a[i];
        printf("%d\n",ans);
    }
    return 0;
}
相关文章
|
机器学习/深度学习 人工智能 BI
The Great Hero(Codeforces Round #700 (Div. 2))模拟+贪心思想和排序
The Great Hero(Codeforces Round #700 (Div. 2))模拟+贪心思想和排序
62 0
|
人工智能 算法
Codeforces #737Div2A. A. Ezzat and Two Subsequences(模拟)
Codeforces #737Div2A. A. Ezzat and Two Subsequences(模拟)
50 0
|
机器学习/深度学习
Codeforces Round #742 (Div. 2)
Codeforces Round #742 (Div. 2)
56 0
|
人工智能 索引
Codeforces Round 806 (Div. 4)
Codeforces Round 806 (Div. 4)A~G
115 0
Codeforces Round 835 (Div. 4)
Codeforces Round 835 (Div. 4) A~F题解
113 0
Codeforces Round #675 (Div. 2) A~D
Codeforces Round #675 (Div. 2) A~D
155 0
Codeforces Round #723 (Div. 2)B. I Hate 1111
Description You are given an integer x. Can you make x by summing up some number of 11,111,1111,11111,…? (You can use any number among them any number of times). For instance, 33=11+11+11 144=111+11+11+11
182 0
Codeforces Round #723 (Div. 2)B. I Hate 1111
|
机器学习/深度学习 算法 C++