-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCHNUM.java.txt
More file actions
59 lines (59 loc) · 1.05 KB
/
Copy pathCHNUM.java.txt
File metadata and controls
59 lines (59 loc) · 1.05 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
import java.util.*;
import java.io.*;
class Main{
public static void main(String []args)
{
// your code goes here
int T,N;
Scanner sc=new Scanner(System.in);
T=sc.nextInt();
while(T>0)
{
N=sc.nextInt();
int a[]=new int[N];
for(int i=0;i<N;i++)
{
a[i]=sc.nextInt();
}
int ps=0,ns=0,pos=0,neg=0;
for(int i=0;i<N;i++)
{
if(a[i]>0)
{
ps=ps+a[i];
pos++;
}
else if(a[i]<0)
{
ns=ns+a[i];
neg++;
}
else
{
pos++;
neg++;
}
}
if(neg!=0 && pos!=0)
{
if(neg>pos)
{
System.out.println(neg+"\t"+pos);
}
else
{
System.out.println(pos+"\t"+neg);
}
}
else if(neg==0)
{
System.out.println(pos+"\t"+pos);
}
else if(pos==0)
{
System.out.println(neg+"\t"+neg);
}
T--;
}
}
}