/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB
#2 Wrong Answer 11ms 540.0 KiB
#3 Wrong Answer 7ms 592.0 KiB
#4 Wrong Answer 8ms 624.0 KiB
#5 Wrong Answer 19ms 1.504 MiB
#6 Wrong Answer 18ms 1.324 MiB

Code

#include <bits/stdc++.h>
#define ll long long
#define el '\n'
#define swift ios_base::sync_with_stdio(0); cin.tie(nullptr);
#define pr cin.exceptions(ios::badbit | ios::failbit);
using namespace std;

int main() {
    swift;
    pr;

    ll tt; 
    cin >> tt;
    while (tt--) {
        ll n; 
        cin >> n;
        vector<ll> v(n);
        ll cnt1 = 0, cnt2 = 0;

        for (auto &u : v) {
            cin >> u;
            if (u % 2 == 0) cnt1++;
            else cnt2++;
        }

        if (cnt1 > 0 && cnt2 > 0) {
            if (n % 2 == 1) {
                cout << "Roy" << el;
            } else {
                cout << "Hridoy" << el;
            }
        } else if (cnt1 > 0) {
        
            cout << "Hridoy" << el; 
        } else if (cnt2 > 0) {

            cout << "Hridoy" << el; 
        }
    }

    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:33:03
Judged At
2024-10-03 16:33:03
Judged By
Score
1
Total Time
19ms
Peak Memory
1.504 MiB