Wrong Answer
Code
#include<bits/stdc++.h>
using namespace std;
void solve()
{
int n; cin>>n;
int a[n];
for(int i=0; i<n; i++){
cin>>a[i];
}
int o=0,e=0;
for(int i=0; i<n; i++){
if(a[i]%2==0){
e++;
}
o++;
}
if(o==e){
cout<<"Hridoy"<<endl;
}
else{
cout<<"Roy"<<endl;
}
}
int main()
{
int 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:52:12
- Judged At
- 2024-12-17 11:35:49
- Judged By
- Score
- 1
- Total Time
- 69ms
- Peak Memory
- 572.0 KiB