-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path1300A.cpp
46 lines (44 loc) · 777 Bytes
/
1300A.cpp
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
42
43
44
45
46
#include<iostream>
#include<vector>
#include<string>
#include<cstring>
#include<stack>
#include<queue>
#include<cstdio>
#include<set>
#include<unordered_set>
#include<cmath>
#include<algorithm>
#include<functional>
#include<utility>
#include<cstdlib>
using namespace std;
typedef long long int lli;
typedef size_t idx;
#define vi vector<int>
#define pb(n) push_back(n)
#define ln "\n"
#define sp ends
#define newline cout << ln
#define fastios ios_base::sync_with_stdio(false); cin.tie(0)
int main(){
int t, n;
cin >> t;
while(t--){
cin >> n;
vi v(n);
for(auto &i : v) cin >> i;
int cnt = 0;
int sum = 0;
for(int i = 0; i < n; ++i){
if(v[i] == 0){
v[i] = 1;
++cnt;
}
sum += v[i];
}
if(sum == 0) ++cnt;
cout << cnt << ln;
}
return 0;
}