/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB
#2 Wrong Answer 13ms 580.0 KiB
#3 Wrong Answer 6ms 540.0 KiB
#4 Wrong Answer 5ms 540.0 KiB
#5 Wrong Answer 18ms 788.0 KiB
#6 Wrong Answer 17ms 556.0 KiB

Code

#include <bits/stdc++.h>

using namespace std;

typedef long long LL;
typedef pair<long long,long long> PLL;

#define int long long
#define all(v) v.begin(),v.end()
#define faster {ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);}  

const LL mod = 1e9 + 7;
const int N = 2e5 + 10;
const LL inf = 1e9;

void solve(int test){
    int n; cin>>n;
    int o = 0, e = 0;
    for(int i = 0; i < n; i++){
        int u; cin>>u;
        if(u & 1) o++;
        else e++;
    }
    if(o > e) swap(o, e);
    if((o + e) % 2 == 0 || o == 0) cout<<"Hridoy\n"; 
    else cout<<"Roy\n";
}

signed main(){
    faster
    int t = 1; 
    cin>>t;
    for(int i = 1; i <= t; i++){
        solve(i);
    }
    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 15:55:04
Judged At
2024-10-03 15:55:04
Judged By
Score
1
Total Time
18ms
Peak Memory
788.0 KiB