Wrong Answer
Code
#include<bits/stdc++.h>
using namespace std;
void solve(){
int n;
cin >> n;
vector<int>board(n);
for(int i=0;i<n;i++){
cin >> board[i];
}
int even=0, odd=0;
for(int i=0;i<n;i++){
if(board[i]%2==0) even++;
else odd++;
}
if(even==n || odd==n){
cout << "Hridoy" << endl;
}
else if(even>odd && (even-odd)%2==1){
cout << "Roy" << endl;
}
else if(odd>even && (odd-even)%2==1){
cout << "Roy" << endl;
}
else{
cout << "Hridoy" << endl;
}
}
int main(void){
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 16:50:38
- Judged At
- 2024-11-11 02:47:26
- Judged By
- Score
- 1
- Total Time
- 52ms
- Peak Memory
- 556.0 KiB