//#define _GLIBCXX_DEBUG #include #define rep(i, n) for(int i=0; i; using vs = vector; using vi = vector; using vvi = vector; template using PQ = priority_queue; template using PQG = priority_queue, greater >; const int INF = 100010001; const ll LINF = (ll)INF*INF*10; template inline bool chmax(T1 &a, T2 b) {return a < b && (a = b, true);} template inline bool chmin(T1 &a, T2 b) {return a > b && (a = b, true);} template istream &operator>>(istream &is, pair &p) { return is >> p.first >> p.second;} template ostream &operator<<(ostream &os, const pair &p) { return os << p.first << ' ' << p.second;} const int N = 1e5+10; const int K = 5e5+10; //head int n; int l[N]; int q; ld k[K]; PQ> pq; int main() { ios::sync_with_stdio(false); cin.tie(0); cout << fixed << setprecision(20); cin >> n; rep(i, n) cin >> l[i]; rep(i, n) pq.emplace(l[i], 1); cin >> q; rep(i, K) { auto now = pq.top(); pq.pop(); k[i] = now.first; pq.emplace(now.first*now.second/(now.second+1), now.second+1); } while(q--) { int u; cin >> u; cout << k[u-1] << '\n'; } }