Wrong Answer
Code
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define all(a) a.begin(),a.end()
#define endl '\n'
void solve()
{
ll n;cin>>n;
vector<ll>v(n);
ll od=0,ev=0;
for(auto &x:v){
cin>>x;
if(x%2==0)ev++;
else od++;
}
if(n%2)
{
if(od==0||ev==0)
{
cout<<"Hridoy\n";
}
else{
cout<<"Roy"<<endl;
}
}
else{
if(od==ev)
{
cout<<"Hridoy\n";
}
else{
cout<<"Roy"<<endl;
}
}
}
int main()
{
ios::sync_with_stdio(0); cin.tie(0);
ll t;cin>>t;
while(t--)
{
solve();
}
}
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 15:57:07
- Judged At
- 2024-12-17 11:35:39
- Judged By
- Score
- 1
- Total Time
- 19ms
- Peak Memory
- 584.0 KiB