#include int main() { std::ios::sync_with_stdio(false); std::cin.tie(nullptr); int dp[401] = {}; for (int t = 0; t < 4; ++t) { for (int i = 400; i >= 0; --i) { for (int j = 0; j <= 100 && j <= i; ++j) { int x; if (j >= 95) { x = 43; } else if (j >= 90) { x = 40; } else if (j >= 85) { x = 37; } else if (j >= 80) { x = 33; } else if (j >= 75) { x = 30; } else if (j >= 70) { x = 27; } else if (j >= 67) { x = 23; } else if (j >= 65) { x = 20; } else if (j >= 62) { x = 17; } else if (j >= 60) { x = 10; } else { x = 0; } dp[i] = std::max(dp[i], dp[i - j] + x); } } } int t; std::cin >> t; std::cout << std::fixed << std::setprecision(1); while (t--) { int x; std::cin >> x; std::cout << 0.1 * dp[x] << "\n"; } return 0; }