#include <bits/stdc++.h> using namespace std; int k,n,res,t[122],licz,x; int main(){ cin>>k>>n; for(int i=1;i<=k;i++){ cin>>x; t[x]++; } if(k<=n){ cout<<k; return 0; } for(int i=122;i>=1;i--){ if(t[i]>0){ licz++; res+=t[i]; } if(licz==n||res>=n){ cout<<res; 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 32 33 | #include <bits/stdc++.h> using namespace std; int k,n,res,t[122],licz,x; int main(){ cin>>k>>n; for(int i=1;i<=k;i++){ cin>>x; t[x]++; } if(k<=n){ cout<<k; return 0; } for(int i=122;i>=1;i--){ if(t[i]>0){ licz++; res+=t[i]; } if(licz==n||res>=n){ cout<<res; return 0; } } } |