/ 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 572.0 KiB
#4 Wrong Answer 5ms 532.0 KiB
#5 Accepted 17ms 816.0 KiB
#6 Accepted 37ms 908.0 KiB

Code

/*
 *Copyright (c) Swadheen Islam Robi (SIR01)
 *Created on Thu Oct 03 2024 9:07:48 PM
 */
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ld long double
#define pie 2*(acos(0.0))
#define yes cout<<"YES\n"
#define no cout<<"NO\n"
#define pb push_back
#define endl "\n"
#define lcm(a,b) (a*b)/(__gcd<ll>(a,b))
#define mod 1000000007
#define srt(v) sort(v.begin(),v.end())
#define rsrt(v) sort(v.rbegin(),v.rend())
#define ALLAHU_AKBAR ios::sync_with_stdio(false); cin.tie(nullptr);

void sir()
{
    // int y
    int N;
    cin >> N;
    vector<int> v(N);
    int od = 0, ev = 0;

    for (int i = 0; i < N; ++i) {
        cin >> v[i];
        if (v[i] % 2 == 0) {
            ev++;
        } else {
            od++;
        }
    }

    if(N==1) cout<<"Roy"<<endl;
    else if(od == ev || od==0 || ev==0) {
        cout << "Hridoy" << endl;
    }
    else if(ev%2==1 && od%2==0){
        cout << "Roy" << endl;
    }
    else if(ev%2==0 && od%2==0)
    {
        cout<<"Hridoy"<<endl;
    }
    else if(od%2==1 && ev%2==1)
    {
        cout<<"Roy"<<endl;
    }
    else if(od%2==1 && ev%2==0){
        cout<<"Roy"<<endl;
    }
    else{
        cout<<"Hridoy"<<endl;
    }
    // else if(od<ev)
    // {
    //     while(1)
    //     {
    //         od--;
    //         if(od==0) 
    //         {cout<<"Roy"<<endl;
    //         return;}
    //         od--;
    //         if(od==0){
    //             cout<<"Hridoy"<<endl;
    //             return;
    //         }
    //     }
    // }
    // else{
    //     while(1)
    //     {
    //         ev--;
    //         if(ev==0) 
    //         {cout<<"Roy"<<endl;
    //         return;}
    //         ev--;
    //         if(ev==0){
    //             cout<<"Hridoy"<<endl;
    //             return;
    //         }
    //     }
    // }
    
}

int main() {
    ALLAHU_AKBAR

    ll t = 1;
    cin>>t;
    while(t--)
    {
        sir();
    }
    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 17:34:42
Judged At
2024-10-03 17:34:42
Judged By
Score
41
Total Time
37ms
Peak Memory
908.0 KiB