1013: 湖南省第十七届大学生计算机程序设计竞赛(HNCPC2021) - Semilive

开始时间Start Time
2021-12-05 18:00:00
结束时间End Time
2021-12-05 23:00:00
当前时间Current Time
2025-12-14 13:55:46
比赛状态Contest Status
比赛类型Contest Type
公开Public
榜单状态Rank Status

C (1159) : Average of Two Numbers

时间限制Time Limit 1 Sec 内存限制Memory Limit 128 MB 提交次数Submitted 212 Times 通过次数Solved 37 Times 标准评测Standard Judge

题目描述Description

Given a list of n different numbers, which number in this list can be represented as an average of any two other numbers in the same list?

输入格式Input

There are multiple test cases.

The first line of each test case is an integer n, where 3 ≤ n ≤ 1000. The second line contains n different positive integers seperated by spaces, denoting the list of numbers. The numbers are in ascending order and every number in this list is less than 109.

输出格式Output

For each test case, output the number of numbers in this list which can be represented as an average of any two other numbers in the same list.

样例Sample

提示Hint

In the first case, 2 can be represented by (1 + 3) / 2.

In the second case, 6 can be represented by (3 + 9) / 2, 7 can be represented by (6 + 8) / 2, 8 can be represented by (7 + 9) / 2.