최대 1 분 소요

[백준 4344번] 평균은 넘겠지

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
package _2월_1주차;
 
import java.util.Scanner;
public class 백준_손수경_정답_4344 {
 
    public static void main(String[] args) {
        
        Scanner sc = new Scanner(System.in);
        int c = sc.nextInt();
        
        for (int i = 0; i < c; i++) {
            int n = sc.nextInt();
            int total = 0;
            int[] score = new int[n];
            for (int j = 0; j < n; j++) {
                score[j] = sc.nextInt();
                total += score[j];
            }
            double avg = total / n;
            int cnt = 0;
            for (int j = 0; j < n; j++) {
                if (avg < (double)score[j]) {
                    cnt++;
                }
            }
            System.out.printf("%.3f%%\n", (cnt / (double)n) * 100);
        }
    }
}
 
cs

이 문제의 주의 사항은 형변환 정도? 인 것 같다.

댓글남기기