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
#include<bits/stdc++.h>
#define limN 2005

using namespace std;

int tab[limN];

bool comp(int x, int y) {
    return x > y;
}

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

    int n, k; cin >> n >> k;

    for(int i = 0; i < n; i++) 
        cin >> tab[i];

    sort(tab, tab+n, comp);

    // for(int i = 0; i < n; i++) 
    //     cout << tab[i];
    int ans = 0;
    for(int i = k; tab[i] == tab[i-1] ; i++)
        ans++;
    cout << ans+k;
}