CF134A.Average Numbers
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given a sequence of positive integers a1,a2,...,an . Find all such indices i , that the i -th element equals the arithmetic mean of all other elements (that is all elements except for this one).
输入格式
The first line contains the integer n ( 2<=n<=2⋅105 ). The second line contains elements of the sequence a1,a2,...,an ( 1<=ai<=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 1 to n .
If the sought elements do not exist, then the first output line should contain number 0 . 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