/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 332.0 KiB
#2 Wrong Answer 72ms 580.0 KiB
#3 Wrong Answer 29ms 548.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 (e == 0 || o == 0){
      if (e + o == 1) cout << "Roy" << endl;
      else cout << "Hridoy" << endl;
    } else if (e % 2 == o % 2) 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 15:52:54
Judged At
2024-12-17 11:35:48
Judged By
Score
1
Total Time
72ms
Peak Memory
580.0 KiB