#include <bits/stdc++.h>
#define ll long long
#define el '\n'
#define swift ios_base::sync_with_stdio(0); cin.tie(nullptr);
#define pr cin.exceptions(ios::badbit | ios::failbit);
using namespace std;
int main() {
swift;
pr;
ll tt;
cin >> tt;
while (tt--) {
ll n;
cin >> n;
vector<ll> v(n);
ll cnt1 = 0, cnt2 = 0;
for (auto &u : v) {
cin >> u;
if (u % 2 == 0) cnt1++;
else cnt2++;
}
if (cnt1 > 0 && cnt2 > 0) {
if (n % 2 == 1) {
cout << "Roy" << el;
} else {
cout << "Hridoy" << el;
}
} else if (cnt1 > 0) {
cout << "Hridoy" << el;
} else if (cnt2 > 0) {
cout << "Hridoy" << el;
}
}
return 0;
}