码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 1907

时间:2020-03-25 21:24:17      阅读:52      评论:0      收藏:0      [点我收藏+]

标签:href   c++   its   hdu   john   stdin   div   style   freopen   

http://acm.hdu.edu.cn/showproblem.php?pid=1907

后取完的输

#include <bits/stdc++.h>
using namespace std;
int t,n,x,tmp,g;
int main(){
    //freopen("in","r",stdin);
    ios::sync_with_stdio(0);
    cin >> t;
    while(t--) {
        tmp = 0;
        g = 0;
        cin >> n;
        for (int i = 1; i <= n; i++) {
            cin >> x;
            if(x == 1) g++;
            tmp ^= x;
        }
        if(g != n) {
            if (tmp) cout << "John" << endl;
            else cout << "Brother" << endl;
        }else{
            if(g & 1) cout << "Brother" << endl;
            else cout << "John" << endl;
        }
    }
    return 0;
}

 

HDU 1907

标签:href   c++   its   hdu   john   stdin   div   style   freopen   

原文地址:https://www.cnblogs.com/xcfxcf/p/12570261.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!