#include<cstdio>
#include<cmath>
#include<algorithm>
#include<cstring>
#include<string>
#include<iostream>
#include<map>
#include<vector>
#include<set>
#include<queue>
using namespace std;
double a, b, x;
int main()
{
int t;
cin >> t;
while (t--)
{
cin >> a >> b >> x;
if (a < x)
{
cout << -1 << endl;
continue;
}
int k = ceil(a / b);
double now = 0;
while (now < x)
{
int cnt = 2 * k - 1;
double tmp = (a - b * (k - 1)) / cnt;
tmp = min(x - now, tmp);
now += tmp;
a -= cnt*tmp;
if (x - now > b&&a < b)
{
a = -1;
break;
}
k--;
}
if (a < 0)
printf("-1\n");
else
printf("%.5lf\n", a);
}
return 0;
}