import std.algorithm, std.conv, std.range, std.stdio, std.string; import std.math; // math functions import std.typecons; // Tuple, Nullable, BigFlags void main() { auto m = readln.chomp.to!int; foreach (_; 0..m) { auto rd = readln.splitter; auto a = rd.front.to!int; rd.popFront(); auto b = rd.front.to!int; rd.popFront(); auto t = rd.front.to!real; auto calc(real x) { return x * a + log(x) * b - log(t); } auto eps = 1.0e-12L, mi = eps, ma = mi; while (calc(ma) < 0) ma *= 2; auto bsearch = iota(mi, ma, 1.0e-10L).map!(n => tuple(n, calc(n))).assumeSorted!"a[1] < b[1]"; auto x = bsearch.lowerBound(tuple(0, 0)).back[0] + eps; writefln("%.10f", E ^^ x); } }