forked from aviraw/CodeChef
-
Notifications
You must be signed in to change notification settings - Fork 2
/
CHFM
41 lines (38 loc) · 836 Bytes
/
CHFM
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#include<iostream>
using namespace std;
int main()
{
long int t;
cin>>t;
for(int i=0;i<t;i++)
{
long int n;
cin>>n;
long int ar[n];
long double s=0.0,avg=0;
for(int j=0;j<n;j++)
{
cin>>ar[j];
s=s+ar[j];
}
avg=(long double)s/n;
int min=100000,l=-1;
for(int j=0;j<n;j++)
{
if(ar[j]==avg)
{
if(ar[j]<min)
{
min=ar[j];
l=j;
}
}
}
if(l==-1)
cout<<"Impossible"<<endl;
else
cout<<l+1<<endl;
}
return 0;
}
//https://www.codechef.com/problems/CHFM