CF2063A.Minimal Coprime

传统题 时间 2000 ms 内存 256 MiB 3 尝试 1 已通过 1 标签

Minimal Coprime

Today, Little John used all his savings to buy a segment. He wants to build a house on this segment.

A segment of positive integers [l,r][l,r] is called coprime if ll and rr are coprime^{\text{∗}}.

A coprime segment [l,r][l,r] is called minimal coprime if it does not contain^{\text{†}} any coprime segment not equal to itself. To better understand this statement, you can refer to the notes.

Given [l,r][l,r], a segment of positive integers, find the number of minimal coprime segments contained in [l,r][l,r].

^{\text{∗}}Two integers aa and bb are coprime if they share only one positive common divisor. For example, the numbers 22 and 44 are not coprime because they are both divided by 22 and 11, but the numbers 77 and 99 are coprime because their only positive common divisor is 11.

^{\text{†}}A segment [l,r][l',r'] is contained in the segment [l,r][l,r] if and only if llrrl \le l' \le r' \le r.

Input

Each test contains multiple test cases. The first line contains the number of test cases tt (1t1001 \le t \le 100). The description of the test cases follows.

The only line of each test case consists of two integers ll and rr (1lr1091 \le l \le r \le 10^9).

Output

For each test case, output the number of minimal coprime segments contained in [l,r][l,r], on a separate line.

Note

On the first test case, the given segment is [1,2][1,2]. The segments contained in [1,2][1,2] are as follows.

  • [1,1][1,1]: This segment is coprime, since the numbers 11 and 11 are coprime, and this segment does not contain any other segment inside. Thus, [1,1][1,1] is minimal coprime.
  • [1,2][1,2]: This segment is coprime. However, as it contains [1,1][1,1], which is also coprime, [1,2][1,2] is not minimal coprime.
  • [2,2][2,2]: This segment is not coprime because 22 and 22 share 22 positive common divisors: 11 and 22.

Therefore, the segment [1,2][1,2] contains 11 minimal coprime segment.

Samples

6
1 2
1 10
49 49
69 420
1 1
9982 44353
1
9
0
351
1
34371

在线编程 IDE

建议全屏模式获得最佳体验