반응형
<코드>
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[] scores = new double[N];
double ans = 0;
for (int i = 0; i < N; i++) {
scores[i] = sc.nextDouble();
}
Arrays.sort(scores);
double M = scores[scores.length-1];
for (int i = 0; i < N; i++) {
scores[i] = scores[i]/M*100;
ans += scores[i];
}
System.out.println(ans/N);
}
}
https://www.acmicpc.net/problem/1546
반응형
'🧩PS > 🥉Easy' 카테고리의 다른 글
[JAVA] 백준 4344번 - 평균은 넘겠지 (0) | 2021.09.17 |
---|---|
[JAVA] 백준 8958번 - OX퀴즈 (0) | 2021.09.17 |
[JAVA] 백준 3052번 - 나머지 (0) | 2021.09.17 |
[JAVA] 백준 2577번 - 숫자의 개수 (0) | 2021.09.17 |
[JAVA] 백준 2562번 - 최댓값 (0) | 2021.09.17 |