A13725 | Distance and Axis
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
We have a point $A$ with coordinate $x = n$ on $OX$ -axis. We'd like to find an integer point $B$ (also on $OX$ -axis), such that the absolute difference between the distance from $O$ to $B$ and the distance from $A$ to $B$ is equal to $k$ .
The description of the first test case. Since sometimes it's impossible to find such point $B$ , we can, in one step, increase or decrease the coordinate of $A$ by $1$ . What is the minimum number of steps we should do to make such point $B$ exist?
The description of the first test case. Since sometimes it's impossible to find such point $B$ , we can, in one step, increase or decrease the coordinate of $A$ by $1$ . What is the minimum number of steps we should do to make such point $B$ exist?
输入格式
The first line contains one integer $t$ ( $1 \le t \le 6000$ ) — the number of test cases.
The only line of each test case contains two integers $n$ and $k$ ( $0 \le n, k \le 10^6$ ) — the initial position of point $A$ and desirable absolute difference.
The only line of each test case contains two integers $n$ and $k$ ( $0 \le n, k \le 10^6$ ) — the initial position of point $A$ and desirable absolute difference.
输出格式
For each test case, print the minimum number of steps to make point $B$ exist.
输入输出样例
输入 #1
6 4 0 5 8 0 1000000 0 0 1 0 1000000 1000000
输出 #1
0 3 1000000 0 1 0
In the first test case (picture above), if we set the coordinate of $B$ as $2$ then the absolute difference will be equal to $|(2 - 0) - (4 - 2)| = 0$ and we don't have to move $A$ . So the answer is $0$ .
In the second test case, we can increase the coordinate of $A$ by $3$ and set the coordinate of $B$ as $0$ or $8$ . The absolute difference will be equal to $|8 - 0| = 8$ , so the answer is $3$ .

In the second test case, we can increase the coordinate of $A$ by $3$ and set the coordinate of $B$ as $0$ or $8$ . The absolute difference will be equal to $|8 - 0| = 8$ , so the answer is $3$ .

C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted