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<bits/stdc++.h>
using namespace std;
int tab[125];
bool porownaj(int a, int b)
{
	return a>b;
}
int main()
{
	ios_base::sync_with_stdio(false);
	cin.tie(0);
	cout.tie(0);
	
	int n,k;
	int pom=0;
	int ile=0;
	cin>>n>>k;
	for(int i=0;i<n;i++)
	{
		cin>>tab[i];
	}
	sort(tab,tab+n, porownaj);
	if (tab[k-1]>=tab[k] && tab[k+1]<tab[k])
	{
	if (tab[k-1]==tab[k]) cout<<k+1;} else
	if (tab[k-1]==tab[k] && tab[k]==tab[k+1])
	{
		pom=tab[k];
		while(tab[k-1]==pom)
		{
			pom=tab[k=k+1];
		}
		cout<<k;
	}
	return 0;
}