/ SeriousOJ /

Record Detail

Compile Error

foo.c:1:9: fatal error: bits/stdc++.h: No such file or directory
    1 | #include<bits/stdc++.h>
      |         ^~~~~~~~~~~~~~~
compilation terminated.

Code

#include<bits/stdc++.h>
#define ll long long
#define el '\n'
#define pb push_back
#define pb1 pop_back
#define swift ios_base::sync_with_stdio(0); cin.tie(nullptr);
#define pr cin.exceptions(ios::badbit | ios::failbit);
using namespace std;


int main() {

    swift;
    pr;

    ll tt=1;
    cin>>tt;
    while(tt--) {
    ll n;
    cin>>n;
    vector<ll> v(n);
    ll cnt1=0,cnt2=0;
    for(auto &u:v) {
        cin>>u;
        if(u%2==0) cnt1++;
        else cnt2++;
    }
    if(cnt1>0 && cnt2>0) {
         if (n%2==1) {
                cout<<"Roy"<<el;
            } else {
                cout<<"Hridoy"<<el;
            }
    }   
    else if(cnt1>0) {
        cout<<"Hridoy"<<el;
    } 
    else if(cnt2>0) {
        cout<<"Hridoy"<<el;
    }
    }
    return 0;
}

Information

Submit By
Type
Submission
Problem
P1102 Odd-Even Game
Contest
Brain Booster #6
Language
C99 (GCC 13.2.0)
Submit At
2024-10-03 16:21:28
Judged At
2024-10-03 16:21:28
Judged By
Score
0
Total Time
0ms
Peak Memory
0 Bytes