Wrong Answer
Code
#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;
}
bool roy = (min(x, y) & 1);
if (n == 1) roy = 1;
if (n == 2) roy = 0;
cout << (roy ? "Roy" : "Hridoy") << "\n";
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1102 Odd-Even Game
- Contest
- Brain Booster #6
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2024-10-03 16:46:57
- Judged At
- 2024-12-17 11:34:03
- Judged By
- Score
- 1
- Total Time
- 12ms
- Peak Memory
- 612.0 KiB