#pragma GCC optimize("O3") #include #define ll long long #define rep2(i,a,b) for(ll i=a;i<=b;++i) #define rep(i,n) for(ll i=0;i=b;i--) #define pii pair #define pll pair #define pq priority_queue #define pb push_back #define eb emplace_back #define veci vector #define vecll vector #define vecpii vector #define vec2(a,b) vector(a,vec(b)) #define vec2ll(a,b) vector(a,vecll(b)) #define vec3(a,b,c) vector>(a,vec2(b,c)) #define vec3ll(a,b,c) vector>(a,vec2ll(b,c)) #define fi first #define se second #define all(c) begin(c),end(c) #define ios ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0); #define lb(c,x) distance(c.begin(),lower_bound(all(c),x)) #define ub(c,x) distance(c.begin(),upper_bound(all(c),x)) using namespace std; int in() {int x;cin>>x;return x;} ll lin() {ll x;cin>>x;return x;} template inline bool chmax(T& a,T b){if(a inline bool chmin(T& a,T b){if(a>b){a=b;return 1;}return 0;} template inline void print(pair p){cout<<"("< inline void print(vector> v){for(auto e:v)print(e); cout< inline void print(T v){for(auto e:v)cout< istream& operator >> (istream& is, vector& vec){ for(T& x:vec) is >> x; return is; } const ll mod=1e9; int main() { ll t; cin >> t; while(t--){ ll n; cin >> n; string s; cin >> s; bool ok=false; rep(i,n){ if(i<=n-3){ bool ok1=true; string p1="ooo"; rep(k,3){ if(s[i+k]!=p1[k]){ ok1=false; break; } } if(ok1) ok=true; bool ok2=true; string p2="o-o"; rep(k,3){ if(s[i+k]!=p2[k]){ ok2=false; break; } } if(ok2) ok=true; bool ok3=true; string p3="oo-"; rep(k,3){ if(s[i+k]!=p3[k]){ ok3=false; break; } } if(ok3) ok=true; bool ok4=true; string p4="-oo"; rep(k,3){ if(s[i+k]!=p4[k]){ ok4=false; break; } } if(ok4) ok=true; } if(i<=n-4){ bool ok5=true; string p5="--o-"; rep(k,4){ if(s[i+k]!=p5[k]){ ok5=false; break; } } if(ok5) ok=true; bool ok6=true; string p6="-o--"; rep(k,4){ if(s[i+k]!=p6[k]){ ok6=false; break; } } if(ok6) ok=true; } } if(ok) cout << "O" << endl; else cout << "X" << endl; } return 0; }