牛客练习赛67 B.牛牛爱位运算(位运算)

传送门

题意:

牛客练习赛67 B.牛牛爱位运算(位运算)_第1张图片

思路:

直接找一下最大值即可

代码:

int main()
{
    //std::ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);
    int t,n;
    scanf("%d",&t);
    while(t--){
        scanf("%d",&n);
        int ma=0;
        rep(i,1,n){
            int x;
            scanf("%d",&x);
            ma=max(ma,x);
        }
        printf("%d\n",ma);
    }
    return 0;
}

你可能感兴趣的:(牛客练习赛67 B.牛牛爱位运算(位运算))