CF1278B.A and B

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given two integers aa and bb . You can perform a sequence of operations: during the first operation you choose one of these numbers and increase it by 11 ; during the second operation you choose one of these numbers and increase it by 22 , and so on. You choose the number of these operations yourself.

For example, if a=1a = 1 and b=3b = 3 , you can perform the following sequence of three operations:

  1. add 11 to aa , then a=2a = 2 and b=3b = 3 ;
  2. add 22 to bb , then a=2a = 2 and b=5b = 5 ;
  3. add 33 to aa , then a=5a = 5 and b=5b = 5 .

Calculate the minimum number of operations required to make aa and bb equal.

输入格式

The first line contains one integer tt ( 1t1001 \le t \le 100 ) — the number of test cases.

The only line of each test case contains two integers aa and bb ( 1a,b1091 \le a, b \le 10^9 ).

输出格式

For each test case print one integer — the minimum numbers of operations required to make aa and bb equal.

输入输出样例

  • 输入#1

    3
    1 3
    11 11
    30 20
    

    输出#1

    3
    0
    4
    

说明/提示

First test case considered in the statement.

In the second test case integers aa and bb are already equal, so you don't need to perform any operations.

In the third test case you have to apply the first, the second, the third and the fourth operation to bb ( bb turns into 20+1+2+3+4=3020 + 1 + 2 + 3 + 4 = 30 ).

首页