CF1766D.Lucky Chains

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Let's name a pair of positive integers (x,y)(x, y) lucky if the greatest common divisor of them is equal to 11 ( gcd(x,y)=1\gcd(x, y) = 1 ).

Let's define a chain induced by (x,y)(x, y) as a sequence of pairs (x,y)(x, y) , (x+1,y+1)(x + 1, y + 1) , (x+2,y+2)(x + 2, y + 2) , \dots , (x+k,y+k)(x + k, y + k) for some integer k0k \ge 0 . The length of the chain is the number of pairs it consists of, or (k+1)(k + 1) .

Let's name such chain lucky if all pairs in the chain are lucky.

You are given nn pairs (xi,yi)(x_i, y_i) . Calculate for each pair the length of the longest lucky chain induced by this pair. Note that if (xi,yi)(x_i, y_i) is not lucky itself, the chain will have the length 00 .

输入格式

The first line contains a single integer nn ( 1n1061 \le n \le 10^6 ) — the number of pairs.

Next nn lines contains nn pairs — one per line. The ii -th line contains two integers xix_i and yiy_i ( 1xi<yi1071 \le x_i < y_i \le 10^7 ) — the corresponding pair.

输出格式

Print nn integers, where the ii -th integer is the length of the longest lucky chain induced by (xi,yi)(x_i, y_i) or 1-1 if the chain can be infinitely long.

输入输出样例

  • 输入#1

    4
    5 15
    13 37
    8 9
    10009 20000

    输出#1

    0
    1
    -1
    79

说明/提示

In the first test case, gcd(5,15)=5>1\gcd(5, 15) = 5 > 1 , so it's already not lucky, so the length of the lucky chain is 00 .

In the second test case, gcd(13+1,37+1)=gcd(14,38)=2\gcd(13 + 1, 37 + 1) = \gcd(14, 38) = 2 . So, the lucky chain consists of the single pair (13,37)(13, 37) .

首页