#include<bits/stdc++.h>
using namespace std;
#define int long long
#define endl "\n"
#define ff first
#define ss second
#define pb push_back
#define all(a) a.begin(),a.end()
#define rall(a) a.rbegin(),a.rend()
#define f(i,x,y) for(int i=x;i<y;i++)
#define f2(i,x,y) for(int i=x;i>=y;i--)
#define pii pair<int,int>
#define Fast ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
const int MOD =1000000007;
const int INF = 1e18;
const int N = 2e5;
void solve(int tc){
int n; cin >> n;
int x = 0 , y = 0;
for(int i=0,z;i<n;i++){
cin >> z;
if(z%2)y++;
else x++;
}
if(n==1)cout << "Roy" << endl;
else if(x==y)cout << "Hridoy" << endl;
else if((x==1 and y>1) or (y==1 and x>1))cout << "Roy" << endl;
else if((x==0 and y>1) or (y==0 and x>1))cout << "Hridoy" << endl;
else{
int mn = min(x,y);
if(mn%2 or abs(x-y)==1)cout << "Roy" << endl;
else cout << "Hridoy" << endl;
}
}
int32_t main(){
Fast
int t=1;
cin >> t;
for(int tc=1;tc<=t;tc++){
solve(tc);
}
return 0;
}