CF1141A.Game 23

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Polycarp plays "Game 23". Initially he has a number nn and his goal is to transform it to mm . In one move, he can multiply nn by 22 or multiply nn by 33 . He can perform any number of moves.

Print the number of moves needed to transform nn to mm . Print -1 if it is impossible to do so.

It is easy to prove that any way to transform nn to mm contains the same number of moves (i.e. number of moves doesn't depend on the way of transformation).

输入格式

The only line of the input contains two integers nn and mm ( 1nm51081 \le n \le m \le 5\cdot10^8 ).

输出格式

Print the number of moves to transform nn to mm , or -1 if there is no solution.

输入输出样例

  • 输入#1

    120 51840
    

    输出#1

    7
    
  • 输入#2

    42 42
    

    输出#2

    0
    
  • 输入#3

    48 72
    

    输出#3

    -1
    

说明/提示

In the first example, the possible sequence of moves is: 12024072014404320129602592051840.120 \rightarrow 240 \rightarrow 720 \rightarrow 1440 \rightarrow 4320 \rightarrow 12960 \rightarrow 25920 \rightarrow 51840. The are 77 steps in total.

In the second example, no moves are needed. Thus, the answer is 00 .

In the third example, it is impossible to transform 4848 to 7272 .

首页