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
#include <iostream>
#include <vector>
#include <algorithm>


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

    std::vector<int> a;

    int n, k, tmp;
    std::cin >> n >> k;

    for(int i = 0; i < n; i++) {
        std::cin >> tmp;
        a.push_back(tmp);
    }

    std::sort(a.begin(), a.end(), [](const int a, const int b) {
        return a > b;
    });

    int delta = 0;
    for(int i = k - 1; i + 1 < n; i++) {
        if(a[i] == a[i + 1])
            delta++;
        else
            break;
    }

    std::cout << k + delta << '\n';

    return 0;
}