#include #include #include #include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int t; cin >> t; while (t--) { double r; cin >> r; cout << fixed << setprecision(16) << r * r * 3. * sqrt(3.) / 4. << endl; } return 0; }