#include <stdio.h> #include <bits/stdc++.h> using namespace std; int main(int argc, char const *argv[]) { int n,k,temp,wynik=0; int punkty[n],wygrani[k]; scanf("%d", &n); scanf("%d", &k); for (int i=0; i<n; i++){ scanf("%d", &temp); punkty[i] = temp; } sort(punkty, punkty + n, greater<int>()); int i = 0; while(i<k || punkty[k]==punkty[i]){ wynik++; i++; } printf("%d", wynik); return 0; }
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 | #include <stdio.h> #include <bits/stdc++.h> using namespace std; int main(int argc, char const *argv[]) { int n,k,temp,wynik=0; int punkty[n],wygrani[k]; scanf("%d", &n); scanf("%d", &k); for (int i=0; i<n; i++){ scanf("%d", &temp); punkty[i] = temp; } sort(punkty, punkty + n, greater<int>()); int i = 0; while(i<k || punkty[k]==punkty[i]){ wynik++; i++; } printf("%d", wynik); return 0; } |