#include<bits/stdc++.h>
using namespace std;
void solve(){
int n;
cin >> n;
vector<int>board(n);
for(int i=0;i<n;i++){
cin >> board[i];
}
int even=0, odd=0;
for(int i=0;i<n;i++){
if(board[i]%2==0) even++;
else odd++;
}
if(even == odd){
cout << "Hridoy" << endl;
}
else if(even == n || odd == n){
cout << "Hridoy" << endl;
}
else if(odd%2==1 && odd>even ){
cout << "Roy" << endl;
}
else if(even%2==1 && even>odd){
cout << "Roy" << endl;
}
else{
cout << "Roy" << endl;
}
}
int main(void){
int t;
cin >> t;
while(t--){
solve();
}
return 0;
}