CF1031F.Familiar Operations

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given two positive integers aa and bb . There are two possible operations:

  1. multiply one of the numbers by some prime pp ;
  2. divide one of the numbers on its prime factor pp .

What is the minimum number of operations required to obtain two integers having the same number of divisors? You are given several such pairs, you need to find the answer for each of them.

输入格式

The first line contains a single integer tt ( 1t1051 \le t \le 10^5 ) — the number of pairs of integers for which you are to find the answer.

Each of the next tt lines contain two integers aia_i and bib_i ( 1ai,bi1061 \le a_i, b_i \le 10^6 ).

输出格式

Output tt lines — the ii -th of them should contain the answer for the pair aia_i , bib_i .

输入输出样例

  • 输入#1

    8
    9 10
    100 17
    220 70
    17 19
    4 18
    32 20
    100 32
    224 385
    

    输出#1

    1
    3
    1
    0
    1
    0
    1
    1
    

说明/提示

These are the numbers with equal number of divisors, which are optimal to obtain in the sample test case:

  • (27,10)(27, 10) , 4 divisors
  • (100,1156)(100, 1156) , 9 divisors
  • (220,140)(220, 140) , 12 divisors
  • (17,19)(17, 19) , 2 divisors
  • (12,18)(12, 18) , 6 divisors
  • (50,32)(50, 32) , 6 divisors
  • (224,1925)(224, 1925) , 12 divisors

Note that there can be several optimal pairs of numbers.

首页