forked from kothariji/competitive-programming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDigit Game.cpp
78 lines (72 loc) · 1.33 KB
/
Digit Game.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#include<bits/stdc++.h>
#define ll long long
using namespace std;
int32_t main()
{
ios::sync_with_stdio(0);
cin.tie(0);
ll t;
cin >> t;
while (t--)
{
ll n;
cin >> n;
string s;
cin >>s;
if (n == 1)
{
if ((s[0] - '0') % 2 == 0)
{
cout << 2 << "\n";
}
else
{
cout << 1 << "\n";
}
continue;
}
ll even = 0;
ll odd = 0;
for (ll i = 0; i < s.length(); i++)
{
if (i % 2 == 0)
{
if ((s[i] - '0') % 2 == 0)
{
even++;
}
}
else
{
if ((s[i] - '0') % 2 != 0)
{
odd++;
}
}
}
ll x = s.length();
if (x % 2 == 0)
{
if (odd < x / 2)
{
cout << 2 << "\n";
}
else
{
cout << 1 << "\n";
}
}
else
{
if (even <= ((x / 2)) )
{
cout << 1 << "\n";
}
else
{
cout << 2 << "\n";
}
}
}
return 0;
}