Accepted
Code
#include <iostream>
#include <string>
using namespace std;
int main() {
string target = "SeriousOJ";
int n, t;
cin >> t;
while (t--) {
cin >> n;
string S;
cin >> S;
int index = 0;
int len = target.length();
bool found = false;
for (char ch : S) {
if (ch == target[index]) {
index++;
}
if (index == len) {
found = true;
break;
}
}
if (found) {
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 12:33:45
- Judged At
- 2024-12-10 12:33:45
- Judged By
- Score
- 100
- Total Time
- 5ms
- Peak Memory
- 800.0 KiB