#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
int n;
cin>>n;
int jg[n];
for(int i=0;i<n;i++)
{
int NUM;
cin>>NUM;
int a[NUM];
for(int j=0;j<NUM;j++)
{
cin>>a[j];
}
sort(a,a+NUM);//排序
/*
for(int j=0;j<NUM;j++)
{
cout<<a[j]<<" ";
}
cout<<endl;*/
jg[i]=0;
if(NUM%2==1)//奇数
{
jg[i]=a[0]-1;//没减1
for(int j=1;j<NUM;j++)
{
jg[i]^=a[j+1]-a[j]-1;
//cout<<jg[i]<<endl;
j++;
}
}else if(NUM%2==0)//偶数
{
for(int j=0;j<NUM;j++)
{
jg[i]^=a[j+1]-a[j]-1;
//cout<<jg[i]<<endl;
j++;
}
}
}
for(int i=0;i<n;i++)
{
//cout<<jg[i]<<endl;
if(jg[i]==0)//平衡的 玩家2赢
{
cout<<"Bob will win"<<endl;
}else
{
cout<<"Georgia will win"<<endl;
}
}
}
如图,n个棋子,给出每个棋子的位置,Georgia和Bob轮流选择一个棋子向左移动,无法移动的一方失败。