#IPL1. IPL - CRICKET TOURNAMENT

IPL - CRICKET TOURNAMENT

 

 

 

NOTE: This problem needs knowledge about the game cricket.

Those who know the basics about IPL can skip the first paragraph.

IPL is one of the famous cricket tournaments. Every match is played between two teams. Each team has eleven players. When the first team bats, the second team bowls. The second team’s aim is to get more score/runs than the first team and the first team’s aim is to defend their score. Each team can bat either till the end of 20 overs or until they lose 10 wickets. 6 balls are bowled every over.

The possible things that can happen in any ball are dot-ball, 1 run, 2 runs, 3 runs, 4 runs, 5 runs, 6 runs, wide, no-ball, wicket. For any no-ball or a wide, 1 run is granted and the ball is not counted. Assume that these things can happen with equal probability.

You are given the overs gone, the current score/wickets and the Target. Find the winning probability of the chasing team.

 

Input Specifications:

The first line consists of an integer t, denoting the number of test cases. Then for the next t lines, each test case consists of three inputs. The overs, current score and the target score.

 

Output Specifications:

For each test case output the winning probability(in percentage) of the chasing team.

Note: The first two decimal places in it's representation should be printed without rounding


Input Constraints:

1<=t<=1000

0.0 <= Overs <= 20.0

0<= Score <= 300

0<= Wickets <= 10

Score <= Target <= 300 

 

Sample Input:

10

19.4 129/9 129

20.0 100/10 100

19.5 0/9 100

19.5 0/0 1

0.0 0/0 300

0.0 0/0 200

0.0 0/0 100

10.0 0/0 100

10.0 0/5 100

13.5 112/4 222

 

Sample Output:

100.00

100.00

0.00

80.00

18.02

61.65

97.60

97.60

55.49

35.84