#abc318e. E - Sandwiches
E - Sandwiches
Score : points
问题描述
给定一个长度为 的正整数序列:。找出满足以下所有条件的正整数三元组 的数量:
- ,
- ,
- 。
以上为通义千问 qwen-max 翻译,仅供参考。
Problem Statement
You are given a sequence of positive integers of length : . Find the number of triples of positive integers that satisfy all of the following conditions:
- ,
- ,
- .
Constraints
- All input values are integers.
Input
The input is given from Standard Input in the following format:
Output
Print the answer as an integer.
Sample Input 1
5
1 2 1 3 2
Sample Output 1
3
The following three triples of positive integers satisfy the conditions:
Sample Input 2
7
1 2 3 4 5 6 7
Sample Output 2
0
There may be no triples of positive integers that satisfy the conditions.
Sample Input 3
13
9 7 11 7 3 8 1 13 11 11 11 6 13
Sample Output 3
20
update @ 2024/3/10 09:04:49