import std.algorithm, std.array, std.container, std.range, std.bitmanip; import std.numeric, std.math, std.bigint, std.random, core.bitop; import std.string, std.regex, std.conv, std.stdio, std.typecons; const real[] pi = [ 0, 0.08333333333333326, 0.16666666666666674, 0.2500000000000001, 0.08333333333333298, 0.24999999999999983, 0.16666666666666718 ]; void main() { auto t = readln.chomp.to!size_t; auto ni = iota(t).map!(_ => readln.chomp.to!int).array; auto maxN = ni.reduce!(max); auto memo = new real[](maxN + 1); foreach (i; 1..maxN + 1) { memo[i] = 1; foreach (d; 1..6 + 1) memo[i] += i - d <= 0 ? 0 : memo[i - d] * pi[d]; } foreach (n; ni) writefln("%.6f", memo[n]); }