A12976 | Infinite Fence
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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 $10^{100}$ planks in two colors in the following way (suppose planks are numbered from left to right from $0$ ):
- if the index of the plank is divisible by $r$ (such planks have indices $0$ , $r$ , $2r$ and so on) then you must paint it red;
- if the index of the plank is divisible by $b$ (such planks have indices $0$ , $b$ , $2b$ and so on) then you must paint it blue;
- if the index is divisible both by $r$ and $b$ 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 $k$ 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.
You must paint a fence which consists of $10^{100}$ planks in two colors in the following way (suppose planks are numbered from left to right from $0$ ):
- if the index of the plank is divisible by $r$ (such planks have indices $0$ , $r$ , $2r$ and so on) then you must paint it red;
- if the index of the plank is divisible by $b$ (such planks have indices $0$ , $b$ , $2b$ and so on) then you must paint it blue;
- if the index is divisible both by $r$ and $b$ 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 $k$ 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 $T$ ( $1 \le T \le 1000$ ) — the number of test cases.
The next $T$ lines contain descriptions of test cases — one per line. Each test case contains three integers $r$ , $b$ , $k$ ( $1 \le r, b \le 10^9$ , $2 \le k \le 10^9$ ) — the corresponding coefficients.
The next $T$ lines contain descriptions of test cases — one per line. Each test case contains three integers $r$ , $b$ , $k$ ( $1 \le r, b \le 10^9$ , $2 \le k \le 10^9$ ) — the corresponding coefficients.
输出格式
Print $T$ 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
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted