CF1260C.Infinite Fence

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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 1010010^{100} 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.

输入格式

The first line contains single integer TT ( 1T10001 \le T \le 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 ( 1r,b1091 \le r, b \le 10^9 , 2k1092 \le k \le 10^9 ) — the corresponding coefficients.

输出格式

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

输入输出样例

  • 输入#1

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

    输出#1

    OBEY
    REBEL
    OBEY
    OBEY
    
首页