记录编号 572223 评测结果 AAAAAAAAAA
题目名称 [CF1682B]AND Sorting 最终得分 100
用户昵称 Gravatar䱖虁職 是否通过 通过
代码语言 C++ 运行时间 0.174 s
提交时间 2022-06-29 15:07:03 内存使用 5.74 MiB
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int t,n,s,p;
int main(){
    freopen("and_sorting.in","r",stdin);
    freopen("and_sorting.out","w",stdout);
    cin>>t;
    for(int i=1;i<=t;i++)
    {
        cin>>n;
        s=(1 << 21) - 1;
        for(int j = 0;j < n;j++)
        {
            cin>>p;
            if(p != j)s &= p;
        }
        cout<<s<<endl;
    }
    return 0;
}