H: Calculating IRR 

Johnny Money is a big-time investor well-known for having the ability to identify good business opportunities. To measure the profitability of a business or project, Johnny calculates the internal rate of return (IRR) based on a projected or existing cash-flow of such a business. If the IRR is greater than any interest rate offered by the bank, the investment is convenient.

In more specific terms, the IRR of an investment is the interest rate (%) at which the sum of the present value of all projected costs (negative cash flows) and benefits (positive cash flows) of the investment equals the initial investment. The present value is calculated dividing the value by an interest rate as many times as the period indicates. For example, the present value of a cost of $100.00 projected for the 3rd period (or month) with an interest rate of 10% is $75.13.

The problem consists of calculating the IRR given an initial investment and the cash flow. For a better understanding of the problem, consider the following example. The initial investment is $4,000.00 and five periods are projected. The first one results in a benefit of $3,852.56; the second period projects a cost of $2,954.21; the three following periods projects benefits of $1,500.00, $2,120.86 and $2,890.64, respectively. Was it a profitable investment? To answer that, we need to find an interest rate such that the sum of the present values equals the initial investment. From the table above, it is clear that such an interest rate is 22.294%, from which we conclude that Johnny Money will accept to invest in this business.


Actual 10% 20% 30% 22.294%
1 $ 3,852.56 $ 3,502.33 $ 3,210.47 $ 2,963.51 $ 3,150.24
2 -$ 2,954.21 -$ 2,441.50 -$ 2,051.53 -$ 1,748.05 -$ 1,975.29
3 $ 1,500.00 $ 1,126.97 $ 868.06 $ 682.75 $ 820.12
4 $ 2,120.86 $ 1,448.58 $ 1,022.79 $ 742.57 $ 948.18
5 $ 2,890.64 $ 1,794.86 $ 1,161.68 $ 778.53 $ 1,056.74
Sum $ 7,409.85 $ 5,431.24 $ 4,211.46 $ 3,419.31 $ 3,999.99
Sum - Inv $ 3,409.85 $ 1,431.24 $ 211.46 $ -580.69 $ 0.01


The reader is suggested to treat this problem as a root-finding problem, which can be solved by means of numerical methods, particularly, the bisection method. This method repeatedly cuts the current interval in half, defining two new subintervals; then it selects the one in which the root must lie: the functions of the first and last values of the subinterval have different signs. Assume that every IRR ranges from -100% to 100%. As an initial interval, the positive half if the sum of the projected values (in the table, $7,409.95) is greater than the investment; choose the negative half, otherwise.

Input 

The first line contains an integer number, N > 0, denoting the number of test cases. The next N lines contain each a cash flow defined as a space-separated list of two-decimal numbers denoting costs (if negative) or benefits (if positive).

Output 

The output consists of N lines, where each line k$ \le$N contains a three-decimal number in the range (-100.0 ...100.0) followed by the character `%', denoting the estimated IRR for cash flow k.


Hint: If there are more than 3 decimals in the output, it has to be rounded using the round-up algorithm.

Sample Input 

3 
500.00 75.60 174.40 -60.75 319.25 84.63 31.17 
100.00 42.27 35.00 -22.35 10.00 
4000.00 3852.56 -2954.21 1500.00 2120.86 2890.64

Sample Output 

6.873% 
-26.369% 
22.294%