/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Wrong Answer 11ms 532.0 KiB
#3 Wrong Answer 5ms 532.0 KiB
#4 Wrong Answer 5ms 532.0 KiB
#5 Wrong Answer 20ms 1.27 MiB
#6 Wrong Answer 20ms 1.305 MiB

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(cnt1%2==1 && cnt2%2==1) {
           cout<<"Roy"<<el;
        } else if(cnt1%2==0 && cnt2%2==1) {
            cout<<"Roy"<<el;
        } else if(cnt1%2==1 && cnt2%2==0) cout<<"Roy"<<el;
        else if(cnt1%2==0 && cnt2%2==0) {cout<<"Roy"<<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
C++17 (G++ 13.2.0)
Submit At
2024-10-03 16:29:28
Judged At
2024-10-03 16:29:28
Judged By
Score
1
Total Time
20ms
Peak Memory
1.305 MiB