Create 705B.cpp

pull/23/head
Kirigaya Kazuto 2016-08-09 10:11:25 +08:00 committed by GitHub
parent 38a800c66d
commit 102ea8ff02
1 changed files with 18 additions and 0 deletions

18
Codeforces/705B.cpp Normal file
View File

@ -0,0 +1,18 @@
#include <cstdio>
#include <cstdlib>
#include <cstring>
using namespace std;
int main()
{
long long sum=0;
int n;
scanf("%d",&n);
int tmp;
for(int i=0;i<n;i++)
{
scanf("%d",&tmp);
sum=sum+tmp-1;
printf("%d\n",2-!!(sum&1));
}
return 0;
}