Roy and Alfi reside in two different cities, Roy in city A and Alfi in city B. Roy wishes to meet her in city B.
There are two trains available from city A to city B. Roy is on his way to station A (Railway station of city A). It will take time (in minutes) for Roy to reach station A. The two trains departs in and minutes respectively. Average velocities (in km/hr) of trains are and respectively. We know the distance D (in km) between city A and city B. Roy wants to know the minimum time (in minutes) to reach city B, if he chooses train optimally.
If its not possible to reach city B, print "-1" instead (without quotes).
Note: If the minimum time is not integral, round the value to the least integer greater than minimum time.
Input:
First line will contain integer T, number of test cases.
Second line will contain integers ** ** (their meanings are mentioned in problem statement)
Output:
Print the integral result, minimum time (in minutes) to reach city B in a new line.
Constraints:
Roy reaches station A in 5 minutes, First train departs in 5 minutes and second train departs in 8 minutes, he will be able to catch both of them. But he has to make an optimal choice, which train reaches city B in minimum time. For first train minutes. Total time for first train, minutes
For second train minutes. Least integer greater than . Total time for second train minutes. So optimal choice is to take first train, and hence the minimum time is minutes.