ГлавнаяСборникиТурнирыРазделыФорумыУчастникиПечатьПомощьО системе

Турниры > SEM 2 - W2 > задача:


15-PE-6. 50870 - ZScore normalization

SEM 2 - W2

Старт: 14.мар.2023 в 00:01:33
Финиш: 20.мар.2023 в 20:01:33
Турнир завершён!
• Турнирная таблица

Гость
• Вопросы к жюри (1)

Задачи турнира

• 51194 - The difference between max...
• 51196 - The sum of two arrays
• 15-PE-6. 50870 - ZScore normal...
• 2013-01-20. 50331 - Number of Nu...

Обратная связь

Если у вас есть предложения или пожелания по работе Contester, посетите форум сайта www.contester.ru.

Лимит времени 2000/4000/4000/4000 мс. Лимит памяти 65000/65000/65000/65000 Кб.
Question by Ibrahim Mesecan.

ZScore normalization

There are several methods to put the items in the same scale. In Z-score normalization arithmetic mean is subtracted from each data item and the result is divided by the standard deviation.

where μ is the arithmetic mean and σ is the standard deviation of the sequence.

Question: Write a program that reads a sequence of numbers and then normalizes them using ZScore.

Input specification
You will be first given a number (n) the number of numbers, where 0 ≤ n ≤ 5000. Then in the following line, you will be given n integers which are between -50,000 and 50,000.

Output specification:
Show the normalized sequence with two digits precision.

Sample Input I
5
9 7 10 5 8
Sample Output I
0.62 -0.42 1.14 -1.46 0.10

Explanation: There are 5 numbers given. And, arithmetic mean μ = 7.8 and σ = 1.9235. If μ is subtracted from all the numbers and then divided by σ, we have the given sequence.



Для отправки решений необходимо выполнить вход.

www.contester.ru