题库练习 Exciting Bets
← 上一题 下一题 →

A14458 | Exciting Bets

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Welcome to Rockport City!

It is time for your first ever race in the game against Ronnie. To make the race interesting, you have bet $a$ dollars and Ronnie has bet $b$ dollars. But the fans seem to be disappointed. The excitement of the fans is given by $gcd(a,b)$ , where $gcd(x, y)$ denotes the [greatest common divisor (GCD)](https://en.wikipedia.org/wiki/Greatest_common_divisor) of integers $x$ and $y$ . To make the race more exciting, you can perform two types of operations:

1. Increase both $a$ and $b$ by $1$ .
2. Decrease both $a$ and $b$ by $1$ . This operation can only be performed if both $a$ and $b$ are greater than $0$ .

In one move, you can perform any one of these operations. You can perform arbitrary (possibly zero) number of moves. Determine the maximum excitement the fans can get and the minimum number of moves required to achieve it.

Note that $gcd(x,0)=x$ for any $x \ge 0$ .

输入格式

The first line of input contains a single integer $t$ ( $1\leq t\leq 5\cdot 10^3$ ) — the number of test cases.

The first and the only line of each test case contains two integers $a$ and $b$ ( $0\leq a, b\leq 10^{18}$ ).

输出格式

For each test case, print a single line containing two integers.

If the fans can get infinite excitement, print 0 0.

Otherwise, the first integer must be the maximum excitement the fans can get, and the second integer must be the minimum number of moves required to achieve that excitement.

输入输出样例

输入 #1
4
8 5
1 2
4 4
3 9
输出 #1
3 1
1 0
0 0
6 3
C++ 编辑器
输入
输出