/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 496.0 KiB
#2 Wrong Answer 68ms 556.0 KiB
#3 Wrong Answer 28ms 548.0 KiB
#4 Wrong Answer 24ms 332.0 KiB
#5 Wrong Answer 97ms 544.0 KiB
#6 Wrong Answer 96ms 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 (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-10-03 15:52:54
Judged By
Score
1
Total Time
97ms
Peak Memory
556.0 KiB