/** * @link http://acm.hdu.edu.cn/showproblem.php?pid=2188 * @author Sycamore * @date Aug, 21 */import java.util.*; class Main{ public static void main(String args[]){ Scanner scanner=new Scanner(System.in); int c=scanner.nextInt(); while(c--!=0){ int n=scanner.nextInt(),m=scanner.nextInt(); System.out.println(n%(m+1)==0?"Rabbit":"Grass"); } scanner.close(); }}
时间: 2024-10-15 18:55:51