Accepted
Code
#include<bits/stdc++.h>
using namespace std;
#define int long long
signed main()
{
ios::sync_with_stdio(false);
cin.tie(0);
int t;cin>>t;
while(t--)
{
int n;
cin>>n;
string s;
cin>>s;
string s2="SeriousOJ";
int j=0,count=0;
for(int i=0;i<n;i++)
{
if(s[i]==s2[j])
{
count++;
j++;
}
}
if(count==9) cout<<"YES"<<endl;
else cout<<"NO"<<endl;
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1147 SeriousOJ Challenge
- Contest
- LU IUJPC : Sylhet Division 2024
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2024-12-09 04:59:51
- Judged At
- 2024-12-09 04:59:51
- Judged By
- Score
- 100
- Total Time
- 3ms
- Peak Memory
- 840.0 KiB