1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#pragma GCC optimize("O3")
#include<bits/stdc++.h>
using namespace std;

#define sz(s) (int)s.size()
#define vi vector<int>
#define all(s) s.begin(), s.end()

void solve(){
    int n, m;
    cin >> n >> m;

    vi tab(n);
    for(auto & u : tab)
        cin >> u;

    sort(tab.rbegin(), tab.rend());

    for(int i = m - 1; i < n - 1; i++)
        if(tab[i] == tab[i + 1])
            m++;
        else
            break;
    
    cout << m << '\n';
}

int main(){
    ios::sync_with_stdio(0);
    cin.tie(0);

    int tests = 1;
    // cin >> tests;

    for(int i = 0; i < tests; i++)
        solve();

    return 0;
}