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<iostream>
#include<algorithm>
using namespace std;
int t[1000007];
int main()
{
	ios_base::sync_with_stdio(0);
	cin.tie(0);
	cout.tie(0);
	int a,b,s=0;
	cin>>a>>b;
	for(int i=0;i<a;i++)
	{
		cin>>t[i];
	}
	s=b;
	sort(t,t+a);
	reverse(t,t+a);
	for(int i=b;i<a;i++)
	{
		if(t[i]==t[b-1])
		{
			s++;
		}else{
			break;
		}
	}
	cout <<s;
}