#include #define rep(i,n) for(int i=0;i<(n);i++) using namespace std; bool check(string s){ int n=s.length(); // oo?, o?o, ?oo rep(i,n-2){ if(count(s.begin()+i,s.begin()+i+3,'o')>=2) return true; } // ?o??, ??o? rep(i,n-3){ if(s[i+1]=='o' || s[i+2]=='o') return true; } // o???o rep(i,n-4){ if(s[i]=='o' && s[i+4]=='o') return true; } return false; } void solve(){ int n; string s; cin>>n>>s; int pre=0; rep(i,n+1) if(i==n || s[i]=='x') { if(check(s.substr(pre,i-pre))){ puts("O"); return; } pre=i+1; } puts("X"); } int main(){ int q; scanf("%d",&q); rep(_,q) solve(); return 0; }