John

Time Limit: 5000/1000 MS (Java/Others)    Memory Limit: 65535/32768 K (Java/Others)
Total Submission(s): 6000    Accepted Submission(s): 3486

Problem Description
Little John is playing very funny game with his younger brother. There is one big box filled with M&Ms of different colors. At first John has to eat several M&Ms of the same color. Then his opponent has to make a turn. And so on. Please note that each player has to eat at least one M&M during his turn. If John (or his brother) will eat the last M&M from the box he will be considered as a looser and he will have to buy a new candy box.

Both of players are using optimal game strategy. John starts first always. You will be given information about M&Ms and your task is to determine a winner of such a beautiful game.

 
Input
The first line of input will contain a single integer T – the number of test cases. Next T pairs of lines will describe tests in a following format. The first line of each test will contain an integer N – the amount of different M&M colors in a box. Next line will contain N integers Ai, separated by spaces – amount of M&Ms of i-th color.

Constraints:
1 <= T <= 474,
1 <= N <= 47,
1 <= Ai <= 4747

 
Output
Output T lines each of them containing information about game winner. Print “John” if John will win the game or “Brother” in other case.
 
Sample Input
2
3
3 5 1
1
1
 
Sample Output
John
Brother

C/C++:

 #include <map>
#include <queue>
#include <cmath>
#include <vector>
#include <string>
#include <cstdio>
#include <cstring>
#include <climits>
#include <iostream>
#include <algorithm>
#define INF 0x3f3f3f3f
#define LL long long
#define wzf ((1 + sqrt(5.0)) / 2.0)
using namespace std;
const int MAX = ; int n, t, num[MAX], temp; int main()
{
scanf("%d", &t);
while (t --)
{
scanf("%d", &n);
for (int i = ; i < n; ++ i)
scanf("%d", &num[i]);
sort(num, num + n);
if (num[n - ] == )
{
if (n & ) printf("Brother\n");
else printf("John\n");
continue;
}
temp = num[] ^ num[];
for (int i = ; i < n; ++ i)
temp ^= num[i];
if (temp == )
printf("Brother\n");
else
printf("John\n");
}
return ;
}

最新文章

  1. wpf中dropdownButton控件下拉居中。。。
  2. 那些一目了然的3D地质模型 【转】
  3. html5 canvas 笔记四(变形 Transformations)
  4. [unroll(num)] for(int i;i&lt;num;i++)
  5. Git CMD - show: Show various types of objects
  6. HDU4453--Looploop (Splay伸展树)
  7. reactor与proactor模式
  8. 【SVN】SVN初识
  9. scrapy框架整理
  10. kvm虚拟化管理平台WebVirtMgr部署-完整记录(1)
  11. 看看大神们是怎么解决一些【bng】的哪!!!!
  12. 标记化结构初始化语法 在结构体成员前加上小数点 如 “.open .write .close ”C99编译器 .
  13. 浙大月赛ZOJ Monthly, August 2014
  14. Java多线程安全问题
  15. PowerPoint 2010 设置演讲者模式
  16. Struts2中使用Session
  17. zabbix service安装配置
  18. 泛型学习第四天——List泛型终结:什么是List泛型,泛型筛选,泛型排序
  19. bzoj4104 [Thu Summer Camp 2015]解密运算
  20. hadoop2.2.0安装需要注意的事情

热门文章

  1. 《FFT家族—从不会到崩溃(坑)》读blog笔记
  2. opencv::模糊图像2
  3. .NET Core 3.0 里新的JSON API
  4. 使用css实现导航下方线条随导航移动效果
  5. Mysql分表的一个考虑
  6. MyBatis 示例-简介
  7. 【java基础】- java双亲委派机制
  8. 文本查重算法SimHash
  9. Java线程池的正确关闭方法,awaitTermination还不够
  10. OptimalSolution(8)--位运算