#P4653. k-th point

k-th point

Problem Description

Consider n data points uniformly distributed in a p-dimensional unit ball centered at the origin. What is the expected distance of the k-th farthest point? (Here k start from 0 to n-1, and 0-th is the farthest point, (n-1)-th is the nearest point.)

Input

The first line contains a number T(T≤100), which is the number of the case number. The next T lines, each line contains a number p, n and k(1≤p, n≤104,0≤k≤n-1) you need to consider.

Output

For each p, n and k, output the expected distance in a single line.The answer will be considered correct if the absolute or relative error doesn't exceed 10-4.

5 2 1 0 2 2 0 3 2 0 3 2 1 4 10 5
0.666666667 0.800000000 0.857142857 0.642857143 0.812559023