#include <bits/stdc++.h>
using namespace std;
#define FAST ios_base::sync_with_stdio(false);cin.tie(NULL);
using ll = long long;
int main() {
FAST;
int tc = 1, ti;
cin >> tc;
for (ti = 1; ti <= tc; ++ti) {
int n, i, p, x, y;
cin >> n;
vector<int> a(n);
x = y = 0;
for (i = 0; i < n; ++i) {
cin >> p;
if (p & 1) x += 1;
else y += 1;
}
if (x > y) swap(x, y);
bool roy = 0;
if (n == 1) {
roy = 1;
} else if (n == 2) {
roy = 0;
} else if (x == 0) {
roy = 0;
} else if (x == y) {
roy = 0;
} else {
roy = (x % 2 == 0) && (y == x+1);
}
cout << (roy ? "Roy" : "Hridoy") << "\n";
}
return 0;
}