#include #include #include #include using namespace std; long long sticks[200005]; int countCuttedSticks(double cutLength) { int count = 0; for (int stick: sticks) { count += (long long)((double) stick / cutLength); } return count; } int main(void){ // Your code here! int N; cin >> N; for (int i=0; i < N; i++) { cin>>sticks[i]; } long long K; cin>>K; double high, low, ans; long long max = 0; for (int i=0; i < N; i++) { if (max < sticks[i]) max = sticks[i]; } high = (double)max; low = 0.0; if (countCuttedSticks(high) == K) cout << high << endl; else { for(int i = 0; i < 100; i++) { ans = (high + low) / 2.0; if (countCuttedSticks(ans) >= K) low = ans; else high = ans; } cout<