import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int C = sc.nextInt(); // 테스트 케이스 개수
int[] arr;
for (int i = 0; i < C; i++) {
int sum = 0; // 학생 점수 합계
double average = 0; // 평균 점수
int count = 0; // 평균 넘는 학생 수
double percent = 0; // 평균 넘는 학생들의 비율
int N = sc.nextInt(); // 학생 수
arr = new int[N];
for (int j = 0; j < N; j++) { // 평균 점수 구하기
arr[j] = sc.nextInt();
sum += arr[j];
}
average = (double)sum / N;
for (int k = 0; k < N; k++) { // 평균 넘는 학생 수 구하기
if (arr[k] > average)
count++;
}
percent = ((double)count/N) * 100;
System.out.printf("%.3f%%\n", percent);
}
}
}