-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathA_ABC.cpp
58 lines (40 loc) · 1.07 KB
/
A_ABC.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
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define inf 1e18
const long long MOD = 1e9 + 7;
const long long INF = numeric_limits<long long>::max();
#define t_case int ttt {} ; cin >> ttt ; while(ttt--)
#define FAST ios_base::sync_with_stdio(0); cin.tie(NULL); cout.tie(NULL);
#define all(x) (x).begin() , (x).end()
#define nl "\n"
signed main()
{
FAST
t_case
{
int n ; cin>> n ;
string s ; cin >> s ;
if(n>2)
{
cout << "NO\n " ;
}
else
{
int a{} , b{} ;
for(auto c : s){ if(c=='1')a++ ; else b++ ;}
if(n==2)
{
if(s.front() == s.back())
{
cout << "NO\n" ;
}
else cout << "YES\n" ;
}
else if(n==1)
{
cout << "YES\n" ;
}
}
}
}