Create 1009.cpp

This commit is contained in:
Kirigaya Kazuto 2017-08-03 14:25:54 +08:00 committed by GitHub
parent c07eeeb284
commit 425180d386

View File

@ -0,0 +1,33 @@
#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;
}