#include<bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef long double ld;
#define all(v) v.begin(),v.end()
#define nl "\n"
#define FIO \
ios_base::sync_with_stdio(false);\
cin.tie(NULL);\
cout.tie(NULL);
void solve()
{
ll n; cin>>n;
string s; cin>>s;
string ans="SeriousOJ";
string check;
ll j=0;
for(ll i=0;i<n;i++)
{
if(s[i]==ans[j])
{
check.push_back(s[i]);
j++;
}
}
if(check==ans) cout<<"YES"<<nl;
else cout<<"NO"<<nl;
}
int32_t main()
{
FIO
ll t=1;
cin>>t;
for(ll i=1;i<=t;i++)
{
// cout<<"Case "<<i<<": ";
solve();
}
}