

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 300 点
問題文
数直線上に N 人の人が住んでいます。
i 番目の人が住んでいるのは座標 X_i です。
あなたは N 人全員が参加する集会を開くことを考えています。
集会は数直線上の任意の 整数値の座標 で開くことができ、座標 P で集会を開くとき、i 番目の人は集会に参加するために (X_i - P)^2 の体力を消費します。
N 人が消費する体力の総和としてありえる値の最小値を求めてください。
制約
- 入力は全て整数である。
- 1 \leq N \leq 100
- 1 \leq X_i \leq 100
入力
入力は以下の形式で標準入力から与えられる。
N X_1 X_2 ... X_N
出力
N 人が消費する体力の総和としてありえる値の最小値を出力せよ。
入力例 1
2 1 4
出力例 1
5
座標 2 で集会を開くとき、1 番目の人が消費する体力は (1 - 2)^2 = 1、 2 番目の人が消費する体力は (4 - 2)^2 = 4、よってその総和は 5 です。 これが 2 人が消費する体力の総和としてありえる値の最小値です。
集会を開くことができるのは整数値の座標だけであることに注意してください。
入力例 2
7 14 14 2 13 56 2 37
出力例 2
2354
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