/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Wrong Answer 10ms 604.0 KiB
#3 Wrong Answer 6ms 532.0 KiB
#4 Accepted 7ms 532.0 KiB
#5 Accepted 33ms 820.0 KiB
#6 Accepted 19ms 820.0 KiB

Code

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define all(x) (x).begin(), (x).end()
#define f(i, n) for (int i = 0; i < n; i++)
#define trace(x) cerr << #x << ": " << x << '\n'

int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);

    int t;
    cin >> t;
    while (t--)
    {
        int n, odd = 0, even = 0;
        cin >> n;
        vector<int> a(n);
        for (int i = 0; i < n; i++)
        {
            cin >> a[i];
            if (a[i] % 2 == 0)
                even++;
            else
                odd++;
        }
        if (n == 1)
        {
            cout << "Roy\n";
            continue;
        }
        if (min(odd, even) & 1)
            cout << "Roy\n";
        else
            cout << "Hridoy\n";
    }

    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:41:27
Judged At
2024-10-03 15:41:27
Judged By
Score
61
Total Time
33ms
Peak Memory
820.0 KiB