链接:https://codeforces.com/contest/1260/problem/C

You are a rebel leader and you are planning to start a revolution in your country. But the evil Government found out about your plans and set your punishment in the form of correctional labor.

You must paint a fence which consists of 1010010100 planks in two colors in the following way (suppose planks are numbered from left to right from 00):

  • if the index of the plank is divisible by rr (such planks have indices 00, rr, 2r2r and so on) then you must paint it red;
  • if the index of the plank is divisible by bb (such planks have indices 00, bb, 2b2b and so on) then you must paint it blue;
  • if the index is divisible both by rr and bb you can choose the color to paint the plank;
  • otherwise, you don't need to paint the plank at all (and it is forbidden to spent paint on it).

Furthermore, the Government added one additional restriction to make your punishment worse. Let's list all painted planks of the fence in ascending order: if there are kk consecutive planks with the same color in this list, then the Government will state that you failed the labor and execute you immediately. If you don't paint the fence according to the four aforementioned conditions, you will also be executed.

The question is: will you be able to accomplish the labor (the time is not important) or the execution is unavoidable and you need to escape at all costs.

Input

The first line contains single integer TT (1≤T≤10001≤T≤1000) — the number of test cases.

The next TT lines contain descriptions of test cases — one per line. Each test case contains three integers rr, bb, kk (1≤r,b≤1091≤r,b≤109, 2≤k≤1092≤k≤109) — the corresponding coefficients.

Output

Print TT words — one per line. For each test case print REBEL (case insensitive) if the execution is unavoidable or OBEY (case insensitive) otherwise.

Example

input

Copy

4
1 1 2
2 10 4
5 2 3
3 2 2

output

Copy

OBEY
REBEL
OBEY
OBEY

题解:www,又被hack了,小菜鸡连gcd都想不到

代码:

#include<cstdio>
#include<iostream>
#include<cstring>
#include<map>
#include<set>
#include<algorithm>
using namespace std;
long long n,a,b,x,y,t,r,k;
int main()
{
    cin>>t;
    while(t--)
    {
    	cin>>r>>y>>k;
    	b=max(r,y);
    	a=min(r,y);
    	long long c=b-__gcd(a,b)-1;
    	x=1+c/a;
        if(x>=k)
		cout<<"REBEL"<<endl;
        else 
		cout<<"OBEY"<<endl;
    }
    
    
    return 0;
}