avinash_jha_04sep's blog

By avinash_jha_04sep, history, 23 months ago, In English

What is wrong in my code I am pasting my code here of today contest problem A... I am little confused why it is giving NO in 3rd test case Anyone please explain...

include <bits/stdc++.h>

using namespace std;

int main() { int t; cin>>t; while(t--){ int n; cin>>n; int a[n]; int sum = 0; for(int i = 0; i <= n-1; i++){ cin>>a[i]; sum = sum + a[i]; } for(int i = 0; i <= n-1; i++){ if((sum — a[i])== a[i]*(n — 1)){ cout<<"YES"<<endl;

}   
 }

cout<<"NO"<<endl;

}

}

  • Vote: I like it
  • -5
  • Vote: I do not like it

| Write comment?
»
23 months ago, # |
  Vote: I like it 0 Vote: I do not like it

U r doing wrong in using break; ig.