#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define all(x) (x).begin(), (x).end()
#define f(i, n) for (int i = 0; i < n; i++)
#define trace(x) cerr << #x << ": " << x << '\n'
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int t;
cin >> t;
while (t--)
{
int n, odd = 0, even = 0;
cin >> n;
vector<int> a(n);
for (int i = 0; i < n; i++)
{
cin >> a[i];
if (a[i] % 2 == 0)
even++;
else
odd++;
}
if (n == 2)
{
cout << "Hridoy\n";
continue;
}
if (n == 1 or odd == 1 or even == 1)
{
cout << "Roy\n";
continue;
}
if (odd == even)
{
cout << "Hridoy\n";
continue;
}
// if (min(odd, even) & 1)
// cout << "Roy\n";
// else
cout << "Hridoy\n";
}
return 0;
}