/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 584.0 KiB
#2 Accepted 2ms 540.0 KiB
#3 Accepted 3ms 492.0 KiB
#4 Accepted 2ms 772.0 KiB
#5 Accepted 2ms 328.0 KiB
#6 Accepted 2ms 796.0 KiB
#7 Accepted 2ms 748.0 KiB
#8 Accepted 2ms 796.0 KiB

Code

#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define srt(v) sort(v.begin(), v.end())
#define rsrt(v) sort(v.rbegin(), v.rend())
#define pb push_back

void solve(){
    int n; cin >> n;
    string s; cin >> s;
    set<string>st;
    bool chk=true;
    string s2= "SeriousOJ";
    int j=0;
    int cnt=0;
    for(int i=0; i<s.size(); i++){
        if(s[i]==s2[j]){
            j++;
            cnt++;
        }
    }
    if(cnt==9){
        cout << "YES\n";
    }else{
        cout << "NO\n";
    }
}

signed main(){
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    int t; cin >> t;
    while(t--){
        solve();
    }
}

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 09:39:04
Judged At
2024-12-09 09:39:04
Judged By
Score
100
Total Time
3ms
Peak Memory
796.0 KiB