#abc249d. D - Index Trio
D - Index Trio
Score : points
问题描述
给定一个长度为 的整数序列 。
找出满足以下所有条件的整数三元组 的个数。
以上为通义千问 qwen-max 翻译,仅供参考。
Problem Statement
You are given an integer sequence of length .
Find the number of triplets of integers satisfying all of the conditions below.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the answer.
Sample Input 1
3
6 2 3
Sample Output 1
2
satisfy the conditions.
Sample Input 2
1
2
Sample Output 2
0
Sample Input 3
10
1 3 2 4 6 8 2 2 3 7
Sample Output 3
62
update @ 2024/3/10 10:38:49