import std.stdio; import std.string; import std.conv; import std.algorithm; import std.array; import std.math; void main(){ auto n = readln.chomp.to!int; foreach(i; 0..n){ readln; double[][] bolt; foreach(j; 0..6){ bolt ~= readln.chomp.split(" ").map!(to!double).array; } auto maxX = bolt.filter!(e=>e[1]>=0).map!(e => e[0]).reduce!max; "%.15f".format(acos(maxX) * 180 / PI).writeln; } }