/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB
#2 Wrong Answer 38ms 564.0 KiB
#3 Wrong Answer 17ms 540.0 KiB
#4 Accepted 15ms 540.0 KiB
#5 Accepted 76ms 540.0 KiB
#6 Accepted 99ms 536.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) 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:25:13
Judged At
2024-10-03 16:25:13
Judged By
Score
61
Total Time
99ms
Peak Memory
564.0 KiB