#include <iostream>
using namespace std;
int main(void)
{
int N = 0;
int Max = 0;
long double Sum = 0;
cin >> N;
if (N>0 and N<=1000)
{
long double Score[N] = {0,};
for (int i=0; i<N; i++)
{
cin >> Score[i];
if (Score[i]>=Max)
{
Max = Score[i];
}
}
for (int j=0; j<N; j++)
{
Score[j] = (Score[j] / Max) * 100;
Sum = Sum + Score[j];
}
cout << Sum/N << endl;
}
return 0;
}
'Computer Science > 백준 알고리즘' 카테고리의 다른 글
[백준] 3의 배수 (파이썬) (0) | 2022.03.14 |
---|---|
[백준] 1712번 손익분기점 (C++) (0) | 2022.03.14 |
[백준] 1541번 잃어버린 괄호 (파이썬) (0) | 2022.03.14 |
[백준] 1436번 영화감독 숌 (파이썬) (0) | 2022.03.14 |
[백준] 1427번 소트인사이드 (파이썬) (0) | 2022.03.14 |