#P1889. 简单的求和
简单的求和
Description
给定 个整数 , 求它们两两相乘再相加的和,即 $S=a_1a_2 + a_1a_3 + \cdots, a_1a_n + a_2a_3 + \cdots + a_{n-2}a_{n-1} + a_{n - 2}a_{n}+a_{n-1}a_{n}$
Input Format
第一行包含一个整数 。
第二行包含 个整数
Output Format
输出一个整数 ,表示所求的和。请使用合适的数据类型进行运算。
4
1 3 6 9
117
Hint
对于 30%的数据,
对于所有评测用例,
Source
前缀和
相关
在下列比赛中: