传统题 1000ms 256MiB

C - Rally

该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。

C - Rally

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:

NN

X1X_1 X2X_2 ...... XNX_N

Output

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


2
1 4
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.


7
14 14 2 13 56 2 37
2354

2024春季入门组刷题营(六)

未参加
状态
已结束
规则
IOI
题目
8
开始于
2024-4-17 18:00
结束于
2024-4-17 21:00
持续时间
3 小时
主持人
参赛人数
10