Wrong Answer
Code
#include <bits/stdc++.h>
using namespace std;
using ll=long long;
void solve(){
int n;
cin>>n;
vector<int> arr(n);
for(int i=0; i<n; i++)cin>>arr[i];
int even=0,odd=0;
for(int i=0; i<n; i++){
if(arr[i]%2==0){
even++;
}
else{
odd++;
}
}
if(even>=odd){
cout<<"Hridoy"<<endl;
}
else{
cout<<"Roy"<<endl;
}
}
int main(){
int t;
cin>>t;
while(t--){
solve();
}
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 15:49:37
- Judged At
- 2024-12-17 11:35:55
- Judged By
- Score
- 1
- Total Time
- 54ms
- Peak Memory
- 588.0 KiB