#P13421. [COCI 2012/2013 #6] DOBRI
[COCI 2012/2013 #6] DOBRI
题目描述
You are given a sequence A consisting of integers (not to be confused with the sequence from the previous task). We will call the sequence element good if it equals the sum of some three elements in positions strictly smaller than (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 (), the length of the sequence A.
The second line of input contains space-separated integers representing the sequence A ().
输出格式
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 of total points, .
In test data worth at least of total points, .