CF134A.Average Numbers

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You are given a sequence of positive integers a1,a2,...,ana_{1},a_{2},...,a_{n} . Find all such indices ii , that the ii -th element equals the arithmetic mean of all other elements (that is all elements except for this one).

输入格式

The first line contains the integer nn ( 2<=n<=21052<=n<=2·10^{5} ). The second line contains elements of the sequence a1,a2,...,ana_{1},a_{2},...,a_{n} ( 1<=ai<=10001<=a_{i}<=1000 ). All the elements are positive integers.

输出格式

Print on the first line the number of the sought indices. Print on the second line the sought indices in the increasing order. All indices are integers from 11 to nn .

If the sought elements do not exist, then the first output line should contain number 00 . In this case you may either not print the second line or print an empty line.

输入输出样例

  • 输入#1

    5
    1 2 3 4 5
    

    输出#1

    1
    3 
  • 输入#2

    4
    50 50 50 50
    

    输出#2

    4
    1 2 3 4 
首页