#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define vc vector<int>
#define pr pair<int,int>
#define PB push_back
#define MP make_pair
#define loop(i,a,b) for(int i = a; i<= b; i++)
#define YES cout<<"YES"<<endl;
#define NO cout<<"NO"<<endl;
#define bb begin()
#define ee end()
#define ff first
#define ss second
#define fastio ios::sync_with_stdio(false);cin.tie(NULL);
void solve();
int main()
{
fastio
int t;cin>>t;
while(t--) solve();
return 0;
}
void solve(){
int n;cin>>n;
map<int,int>mp;
int od=0,ev=0;
vc a(n);for (int i = 0; i < n; i++)
{
cin>>a[i];
if(a[i]%2==0) ev++;
else od++;
}
if(od==0){
if(ev>=2) cout<<"Hridoy"<<endl;
else cout<<"Roy"<<endl;
}
else if(ev==0){
if(od>=2) cout<<"Hridoy"<<endl;
else cout<<"Roy"<<endl;
}
else if(od==ev) cout<<"Hridoy"<<endl;
else cout<<"Roy"<<endl;
}