101942: [AtCoder]ABC194 C - Squared Error

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

Description

Score : $300$ points

Problem Statement

Given is a number sequence $A$ of length $N$.
Find the sum of squared differences of every pair of elements: $\displaystyle \sum_{i = 2}^{N} \sum_{j = 1}^{i - 1} (A_i - A_j)^2$.

Constraints

  • $2 \le N \le 3 \times 10^5$
  • $|A_i| \le 200$
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

$N$
$A_1$ $A_2$ $A_3$ $\cdots$ $A_N$

Output

Print the answer.


Sample Input 1

3
2 8 4

Sample Output 1

56

We have $\sum_{i = 2}^{N} \sum_{j = 1}^{i - 1} (A_i - A_j)^2 = (8 - 2)^2 + (4 - 2) ^ 2 + (4 - 8) ^ 2 = 56$.


Sample Input 2

5
-5 8 9 -4 -3

Sample Output 2

950

Input

题意翻译

给定正整数 $N$ 和一个整数数列 $a$,求 $\sum_{i=1}^N\sum_{j=1}^{i-1}(A_i-A_j)^2$。

加入题单

算法标签: