#ifndef LOCAL
#include <bits/stdc++.h>
#define debug(...)
#endif
using namespace std;
#define int long long
#define cinv(v) for (auto &it:v) cin>>it;
#define coutv(v) for (auto &it:v) cout<< it<<' '; cout<<'\n';
void shelby() {
int n;
cin >> n;
vector<int> v(2);
for (int i = 1; i <= n; ++i) {
int x;
cin >> x;
v[x % 2]++;
}
sort(v.begin(), v.end());
debug(v);
if ((v.front() == 1 && v.back() != 1) || (v.front() && v.front() != v.back())) cout << "Roy\n";
else cout << "Hridoy\n";
}
signed main() {
cin.tie(0)->sync_with_stdio(0);
int t = 1;
cin >> t;
for (int _ = 1; _ <= t; ++_) {
// cout << "Case " << _ << ": ";
shelby();
}
}