complete 13900.py
This commit is contained in:
10
zeta_python/completed/13900.py
Normal file
10
zeta_python/completed/13900.py
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
if __name__ == "__main__":
|
||||||
|
N = int(input())
|
||||||
|
A = list(map(int, input().split()))
|
||||||
|
AS = sum(A)
|
||||||
|
S = 0
|
||||||
|
for _ in range(N - 1):
|
||||||
|
r = A.pop()
|
||||||
|
AS -= r
|
||||||
|
S += r * AS
|
||||||
|
print(S)
|
||||||
Reference in New Issue
Block a user