#P13421. [COCI 2012/2013 #6] DOBRI

[COCI 2012/2013 #6] DOBRI

题目描述

You are given a sequence A consisting of NN integers (not to be confused with the sequence from the previous task). We will call the ithi^{th} sequence element good if it equals the sum of some three elements in positions strictly smaller than ii (an element can be used more than once in the sum).

How many good elements does the sequence contain?

输入格式

The first line of input contains the positive integer NN (1N50001 \leq N \leq 5000), the length of the sequence A.

The second line of input contains NN space-separated integers representing the sequence A (100000Ai100000-100\,000 \leq A_i \leq 100\,000).

输出格式

The first and only line of output must contain the number of good elements in the sequence.

2
1 3
1
6
1 2 3 5 7 10
4
3
-1 2 0
1

提示

In test data worth at least 40%40\% of total points, N50N \leq 50.

In test data worth at least 70%70\% of total points, N500N \leq 500.