Accepted
Code
#include<iostream>
#include<string>
using namespace std;
int main(){
int t;cin>>t;
string found="SeriousOJ";
while(t--){
int n;
string s;cin>>n>>s;
int j=0;
for(int i=0;i<n;i++){
if(s[i] == found[j])
{
j++;
}
if(j==found.size()){
break;
}
}
if(j==found.size()){
cout<< "YES"<<endl;
}
else{
cout<<"NO"<<endl;
}
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1147 SeriousOJ Challenge
- Contest
- LU IUJPC : Sylhet Division 2024 Replay Contest
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2024-12-10 13:53:16
- Judged At
- 2024-12-10 13:53:16
- Judged By
- Score
- 100
- Total Time
- 5ms
- Peak Memory
- 896.0 KiB