/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB
#2 Accepted 4ms 336.0 KiB
#3 Accepted 5ms 340.0 KiB
#4 Accepted 5ms 540.0 KiB
#5 Accepted 4ms 540.0 KiB
#6 Accepted 3ms 540.0 KiB
#7 Accepted 4ms 796.0 KiB
#8 Accepted 3ms 772.0 KiB

Code

#include <bits/stdc++.h>
#define int long long 
using namespace std;

int32_t main() {
    int t;
    cin >> t;
    while (t--) {
        int n;
        cin >> n;

        string s;
        cin >> s;

        string target = "SeriousOJ";
        int index = 0;
        bool ys = false;

        for (char c : s) {
            if (c == target[index]) {
                index++;
                if (index == target.size()) {
                    ys = true;
                    break;
                }
            }
        }

        if (ys) {
            cout << "YES" << endl;
        } else {
            cout << "NO" << endl;
        }
    }
}

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 10:50:51
Judged At
2024-12-10 10:50:51
Judged By
Score
100
Total Time
5ms
Peak Memory
796.0 KiB