CF1720A.Burenka Plays with Fractions

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Burenka came to kindergarden. This kindergarten is quite strange, so each kid there receives two fractions ( ab\frac{a}{b} and cd\frac{c}{d} ) with integer numerators and denominators. Then children are commanded to play with their fractions.

Burenka is a clever kid, so she noticed that when she claps once, she can multiply numerator or denominator of one of her two fractions by any integer of her choice (but she can't multiply denominators by 00 ). Now she wants know the minimal number of claps to make her fractions equal (by value). Please help her and find the required number of claps!

输入格式

The first line contains one integer tt ( 1t1041 \leq t \leq 10^4 ) — the number of test cases. Then follow the descriptions of each test case.

The only line of each test case contains four integers aa , bb , cc and dd ( 0a,c1090 \leq a, c \leq 10^9 , 1b,d1091 \leq b, d \leq 10^9 ) — numerators and denominators of the fractions given to Burenka initially.

输出格式

For each test case print a single integer — the minimal number of claps Burenka needs to make her fractions equal.

输入输出样例

  • 输入#1

    8
    2 1 1 1
    6 3 2 1
    1 2 2 3
    0 1 0 100
    0 1 228 179
    100 3 25 6
    999999999 300000000 666666666 100000000
    33 15 0 84

    输出#1

    1
    0
    2
    0
    1
    1
    1
    1

说明/提示

In the first case, Burenka can multiply cc by 22 , then the fractions will be equal.

In the second case, fractions are already equal.

In the third case, Burenka can multiply aa by 44 , then bb by 33 . Then the fractions will be equal ( 1423=23\frac{1 \cdot 4}{2 \cdot 3} = \frac{2}{3} ).

首页