class Solution {
public int solution(int[] citations) {
int ans =0;
int i = 0; //인용횟수
while(i<10001){
int citation =0; // i번 이상 인용된 논문
int Ncitation =0; // i번 이하 인용된 논문
for(int j=0; j<citations.length; j++){
if( citations[j] >= i ) citation++;
else Ncitation++;
}
if(i >= citation && citations.length-citation <=citation) {
ans= citation;
break;
}
i++;
}
return ans;
}
}