/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Wrong Answer 12ms 580.0 KiB
#3 Wrong Answer 6ms 324.0 KiB

Code

// Created on: 2024-10-03 20:28
// Author: Safwan_Ibrahim

#include <bits/stdc++.h>
using namespace std;

#define ll long long
#define endl '\n'

void solve()
{
    
    int n; cin >> n;
    int a[n+1];

    for (int i = 1; i <= n; i++) {
        cin >> a[i];
    }

    int num_even = 0, num_odd = 0;
    for (int i = 1; i <= n; i++) {
        if (a[i] & 1) {
            num_odd++;
        }
        else {
            num_even++;
        }
    }
    if (abs(num_even-num_odd) > 1) {
        cout << "Hridoy\n";
    }
    else {
        cout << "Roy\n";
    }
    
}

int32_t main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    int t = 1; cin >> t;
    while(t--) solve();
    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:14:02
Judged At
2024-11-11 02:48:59
Judged By
Score
1
Total Time
12ms
Peak Memory
580.0 KiB