입력받은 점수를 정렬한다
정렬된 점수중 높은 점수를 기준으로 평균을 구한다
import java.util.Arrays;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
double[] score = new double[N];
for(int i=0; i<N; i++){
score[i] = sc.nextDouble();
}
Arrays.sort(score);
double avg = 0L;
for(int j=0; j<N; j++){
avg += (score[j]/score[N-1])*100;
}
System.out.println(avg/N);
sc.close();
}
}