/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Accepted 46ms 536.0 KiB
#3 Accepted 16ms 324.0 KiB
#4 Accepted 13ms 344.0 KiB
#5 Accepted 51ms 532.0 KiB
#6 Accepted 52ms 532.0 KiB

Code

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

int main(){
  int t;
  cin >> t;
  while (t--){
    int n, a, e = 0, o = 0;
    cin >> n;
    for (int i = 0; i < n; i++){
      cin >> a;
      if (a & 1) o++;
      else e++;
    }
    if (o > e) swap(o, e);
    if (e == 0 || o == 0){
      if (e + o == 1) cout << "Roy" << endl;
      else cout << "Hridoy" << endl;
    } else if ((e % 2 == 0 && o % 2 == 0) || (o == e))cout << "Hridoy" << endl;
    else if (o % 2 == 0 && e - o > 1) cout << "Hridoy" << endl;
    else cout << "Roy" << endl;
  }
  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:30:44
Judged At
2024-10-03 16:30:44
Judged By
Score
100
Total Time
52ms
Peak Memory
536.0 KiB