import std; void main(){ int t = readln.chomp.to!int; for(;t;t--){ double r = readln.chomp.to!double; writeln((r / 2) * ((r / 2) * 3^^0.5) * 3); } }