/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB
#2 Accepted 2ms 516.0 KiB
#3 Accepted 3ms 484.0 KiB
#4 Accepted 2ms 796.0 KiB
#5 Accepted 2ms 524.0 KiB
#6 Accepted 3ms 516.0 KiB
#7 Accepted 2ms 588.0 KiB
#8 Accepted 3ms 740.0 KiB

Code

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define debug(a) cout << #a << "-->" << (a) << '\n';

int main()
{
    ios ::sync_with_stdio(false);
    cin.tie(NULL);
    int t;
    cin>>t;
    while(t--)
    {
        int n;
        cin>>n;
        string s;
        cin>>s;
        string ans="SeriousOJ";
        int h=0;
        int u=ans.size();
        if(n<u)
        {
            cout<<"NO\n";
            
        }
        else
        {
        string aa;
        for(int i=0;i<u;i++)
        {
            while(h<n)
            {
                if(ans[i]==s[h])
                {
                    aa.push_back(s[h]);
                    h++;
                    break;
                }
                else{
                    h++;
                }
            }
        }
        (aa==ans)?cout<<"YES\n":cout<<"NO\n";
        }
    }
    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 05:16:19
Judged At
2024-12-09 05:16:19
Judged By
Score
100
Total Time
3ms
Peak Memory
796.0 KiB