Codeforces Round #618 (Div. 2)A. Non-zero
If either the sum or the product of all elements in the array is equal to zero, Guy-Manuel and Thomas do not mind to do this operation one more time.
What is the minimum number of steps they need to do to make both the sum and the product of all elements in the array different from zero? Formally, find the minimum number of steps to make a1+a2+ …… +an≠0+an≠0 and a1⋅a2⋅an≠0 .
Input
Each test contains multiple test cases.
The first line contains the number of test cases tt (1≤t≤103). The description of the test cases follows.
The first line of each test case contains an integer nn (1≤n≤100) — the size of the array.
The second line of each test case contains nn integers a1,a2,…,an (−100≤ai≤100 ) — elements of the array .
Output
For each test case, output the minimum number of steps required to make both sum and product of all elements in the array different from zero.
Example
Input
4
3
2 -1 -1
4
-1 0 0 1
2
-1 2
3
0 -2 1
Output
1
2
0
2
。 0, 0 +1, ans++( ), sum( ) ( )。 sum 0 , +1, ans++, sum 0。 ans 。
#include
using namespace std;
int t;
int main()
{
cin>>t;
while(t--)
{
int n;
cin>>n;
long long ans=0;
int i;int temp;
long long sum=0;
for(i=1;i<=n;i++)
{
scanf("%d",&temp);
if(temp==0)
{
temp++;
ans++;
}
sum+=temp;
}
if(sum==0)ans++;
cout<endl;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.