101562: [AtCoder]ABC156 C - Rally

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $300$ points

Problem Statement

There are $N$ people living on a number line.

The $i$-th person lives at coordinate $X_i$.

You are going to hold a meeting that all $N$ people have to attend.

The meeting can be held at any integer coordinate. If you choose to hold the meeting at coordinate $P$, the $i$-th person will spend $(X_i - P)^2$ points of stamina to attend the meeting.

Find the minimum total points of stamina the $N$ people have to spend.

Constraints

  • All values in input are integers.
  • $1 \leq N \leq 100$
  • $1 \leq X_i \leq 100$

Input

Input is given from Standard Input in the following format:

$N$
$X_1$ $X_2$ $...$ $X_N$

Output

Print the minimum total stamina the $N$ people have to spend.


Sample Input 1

2
1 4

Sample Output 1

5

Assume the meeting is held at coordinate $2$. In this case, the first person will spend $(1 - 2)^2$ points of stamina, and the second person will spend $(4 - 2)^2 = 4$ points of stamina, for a total of $5$ points of stamina. This is the minimum total stamina that the $2$ people have to spend.

Note that you can hold the meeting only at an integer coordinate.


Sample Input 2

7
14 14 2 13 56 2 37

Sample Output 2

2354

Input

题意翻译

有 $N$ 个人,第 $i$ 个人处在 $X_i$ 的位置上。现在假设有一个点 $P$ ,第 $i$ 个人前往点 $P$ 的费用为 $(X_i-P)^{2}$ ,总费用为所有人的费用和。现在请确定一个点,使得所有人到达这个点的总费用最小,输出这个最小需要的总费用。

加入题单

算法标签: