mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
34 lines
481 B
C++
34 lines
481 B
C++
#include <cstdio>
|
|
#include <cstdlib>
|
|
#include <cstring>
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
int t;
|
|
scanf("%d",&t);
|
|
while(t--)
|
|
{
|
|
int n;
|
|
scanf("%d",&n);
|
|
|
|
int cnt=0;
|
|
int x;
|
|
for(int i=0;i<n;i++)
|
|
{
|
|
scanf("%d",&x);
|
|
if(x%2==1) ++cnt;
|
|
}
|
|
|
|
if(cnt>=n-cnt)
|
|
{
|
|
printf("2 1\n");
|
|
}
|
|
else
|
|
{
|
|
printf("2 0\n");
|
|
}
|
|
}
|
|
return 0;
|
|
}
|