#include #include #include #include #include #include #include template > void insertion_sort(I first, I last, C c = C()) { for (I it = first; ++it < last;) { auto v0 = *(it - 1); const auto v1 = *it; if (c(v1, v0)) { I i = it; do { *i-- = v0; } while (i > first && c(v1, v0 = *(i - 1))); *i = v1; } } } using namespace std; template I partition(I first, I last, P p) { for (I i0 = first, i1 = last;;) { while (i0 < i1 && p(*i0)) i0++; do { if (i0 == i1) return i0; } while (!p(*--i1)); std::swap(*i0++, *i1); } } template > void partial_quick_sort(I first, I mid0, I mid1, I last, C c = C()) { size_t n = last - first; if (n <= 64) { insertion_sort(first, last, c); return; } auto p = *(first + n / 2); I i0 = ::partition(first, last, [&](const auto& t) { return c(t, p); }); if (mid0 < i0) partial_quick_sort(first, mid0, mid1, i0, c); I i1 = ::partition(i0, last, [&](const auto& t) { return !c(p, t); }); if (i1 < mid1) partial_quick_sort(i1, mid0, mid1, last, c); } int main() { ios::sync_with_stdio(false); cin.tie(0); int n; cin >> n; vector a(n); for (int i = 0; i < n; i++) { cin >> a[i]; } int m = (n - 1) / 2; partial_quick_sort(a.begin(), a.begin() + m, a.begin() + (n + 2) / 2, a.end()); if (n % 2 == 0) { cout << (a[m] + a[m + 1]) * 0.5 << endl; } else { cout << a[m] << endl; } return 0; }