A14552 | The Miracle and the Sleeper
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given two integers $l$ and $r$ , $l\le r$ . Find the largest possible value of $a \bmod b$ over all pairs $(a, b)$ of integers for which $r\ge a \ge b \ge l$ .
As a reminder, $a \bmod b$ is a remainder we get when dividing $a$ by $b$ . For example, $26 \bmod 8 = 2$ .
As a reminder, $a \bmod b$ is a remainder we get when dividing $a$ by $b$ . For example, $26 \bmod 8 = 2$ .
输入格式
Each test contains multiple test cases.
The first line contains one positive integer $t$ $(1\le t\le 10^4)$ , denoting the number of test cases. Description of the test cases follows.
The only line of each test case contains two integers $l$ , $r$ ( $1\le l \le r \le 10^9$ ).
The first line contains one positive integer $t$ $(1\le t\le 10^4)$ , denoting the number of test cases. Description of the test cases follows.
The only line of each test case contains two integers $l$ , $r$ ( $1\le l \le r \le 10^9$ ).
输出格式
For every test case, output the largest possible value of $a \bmod b$ over all pairs $(a, b)$ of integers for which $r\ge a \ge b \ge l$ .
输入输出样例
输入 #1
4 1 1 999999999 1000000000 8 26 1 999999999
输出 #1
0 1 12 499999999
In the first test case, the only allowed pair is $(a, b) = (1, 1)$ , for which $a \bmod b = 1 \bmod 1 = 0$ .
In the second test case, the optimal choice is pair $(a, b) = (1000000000, 999999999)$ , for which $a \bmod b = 1$ .
In the second test case, the optimal choice is pair $(a, b) = (1000000000, 999999999)$ , for which $a \bmod b = 1$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted