/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Wrong Answer 11ms 532.0 KiB
#3 Wrong Answer 6ms 324.0 KiB
#4 Wrong Answer 5ms 532.0 KiB
#5 Wrong Answer 17ms 532.0 KiB
#6 Wrong Answer 17ms 532.0 KiB

Code

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

void solve() {
     
    int n;
    cin >> n;

    int even = 0, odd = 0;
    for (int i = 0; i < n; i++) {
    	int x;
    	cin >> x;
    	if (x & 1)
    		odd++;
    	else
    		even++;
    }

    if (n == 1)
    	cout << "Roy" << '\n';
    else if (even == 0 or odd == 0)
    	cout << "Hridoy" << '\n';
    else if (n == 2 or (even == odd))
    	cout << "Hridoy" << '\n';
    else if (even == 1 or odd == 1)
    	cout << "Roy" << '\n';
    else if (n & 1)
    	cout << "Roy" << '\n';
    else
    	cout << "Hridoy" << '\n';
}

int32_t main() {
	ios_base::sync_with_stdio(false);
    cin.tie(0);

    int tc = 1;
    cin >> tc;

    while(tc--) {
    	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 17:08:24
Judged At
2024-10-03 17:08:24
Judged By
Score
1
Total Time
17ms
Peak Memory
532.0 KiB