hdu 2188 悼念512汶川大地震遇难同胞——选拔志愿者 (巴什博奕)

题目链接:hdu 2188题目链接

题意&思路:巴什博奕。。画n点p点。。。

/*************************************************************************
	> File Name: code/hdu/2188.cpp
	> Author: 111qqz
	> Email: rkz2013@126.com 
	> Created Time: 2015年09月22日 星期二 20时08分08秒
 ************************************************************************/

#include<iostream>
#include<iomanip>
#include<cstdio>
#include<algorithm>
#include<cmath>
#include<cstring>
#include<string>
#include<map>
#include<set>
#include<queue>
#include<vector>
#include<stack>
#include<cctype>
#define y1 hust111qqz
#define yn hez111qqz
#define j1 cute111qqz
#define ms(a,x) memset(a,x,sizeof(a))
#define lr dying111qqz
using namespace std;
#define For(i, n) for (int i=0;i<int(n);++i)  
typedef long long LL;
typedef double DB;
const int inf = 0x3f3f3f3f;
void solve()
{
    int n,m;
    scanf("%d %d",&n,&m);
    if (n%(m+1)!=0)
    {
	puts("Grass");
    }
    else
    {
	puts("Rabbit");
    }
}
int main()
{
  #ifndef  ONLINE_JUDGE 
   freopen("in.txt","r",stdin);
  #endif
    int T;
    cin>>T;
    while (T--)
    {
	solve();
    }
 #ifndef ONLINE_JUDGE  
  fclose(stdin);
  #endif
	return 0;
}