본문 바로가기
알고리즘/백준

[백준 4344번 ː 자바(JAVA)] 평균은 넘겠지

by 그릿er 2020. 5. 4.

 

<문제>

 

첫째 줄에는 테스트 케이스의 개수 C가 주어진다.

둘째 줄부터 각 테스트 케이스마다 학생의 수 N(1 ≤ N ≤ 1000, N은 정수)이 첫 수로 주어지고, 이어서 N명의 점수가 주어진다. 점수는 0보다 크거나 같고, 100보다 작거나 같은 정수이다.

 

 

 

 

 

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
34
35
36
37
38
39
40
41
42
43
44
45
46
import java.util.*;
 
 
public class Main {
 
    public static void main(String[] args)  {
        Scanner sc = new Scanner(System.in);
        
        int n = sc.nextInt();
        float[] result = new float[n];
        float avg=0;
        
        for(int i=0; i<n; i++) {
            int c = sc.nextInt();
            int[] num = new int[c];
            int top=0;
            float count=0;
            float tot = 0;
            
            for(int j=0; j<c; j++) {
                num[j] = sc.nextInt();
                count+=num[j];
            }
            avg = (float)count/c;
            
            for(int j=0; j<c; j++) {
                if(num[j]>avg) {
                    top++;
                }
            }
            result[i] = (float)top/c*100;
            }
        for(int i=0; i<n; i++) {
        System.out.printf("%.3f",result[i]);
        System.out.println("%");
        }
        sc.close();
            
        }
    }