/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 764.0 KiB
#2 Wrong Answer 10ms 580.0 KiB
#3 Wrong Answer 5ms 532.0 KiB
#4 Accepted 5ms 764.0 KiB
#5 Accepted 17ms 1.309 MiB
#6 Accepted 18ms 1.27 MiB

Code

#include <bits/stdc++.h>  
using namespace std;
 
typedef long long ll;
typedef long double ld;
typedef pair<int,int> p32;
typedef pair<ll,ll> p64;
typedef pair<double,double> pdd;
typedef vector<ll> v64;
typedef vector<int> v32;
typedef vector<vector<int> > vv32;
typedef vector<vector<ll> > vv64;
typedef vector<p64> vp64;
typedef vector<p32> vp32;
#define forn(i,e) for(ll i = 0; i < e; i++)
#define forsn(i,s,e) for(ll i = s; i < e; i++)
#define rforn(i,s) for(ll i = s; i >= 0; i--)
#define rforsn(i,s,e) for(ll i = s; i >= e; i--)
#define ln "\n"
#define dbg(x) cout<<#x<<" = "<<x<<ln
#define pb push_back
#define fast_cin() ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL)
#define all(x) (x).begin(), (x).end()
#define sz(x) ((ll)(x).size())
 
ll tt;
void solve(){
    ll n,o=0,e=0,mini,maxi;
    cin >> n;
    ll a[n];
    forn(i,n){
        cin >> a[i];
        if(a[i]%2==0){
            e++;
        }else{
            o++;
        }
    }
    if(o==0 || e==0){
        if((o+e)==1){
            cout << "Roy" << ln;
        }else{
            cout << "Hridoy" << ln;
        }
        return;
    }
    mini=min(o,e);
    maxi=max(o,e);
    if(mini==maxi){
        cout << "Hridoy" << ln;
        return;
    }
    if(mini%2==0){
        cout << "Hridoy" << ln;
    }else{
        cout << "Roy" << ln;
    }
    return;
}
int main()
{
    fast_cin();
    ll t;
    tt=1;
    cin >> t;
    for(int it=1;it<=t;it++) {
        //cout << "Case " << it << ": ";
        solve();
        tt++;
    }
    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:31:09
Judged At
2024-10-03 16:31:09
Judged By
Score
61
Total Time
18ms
Peak Memory
1.309 MiB