Wrong Answer
Code
#include<bits/stdc++.h>
using namespace std;
int main(){
int t;cin>>t;
while(t--){
int n;cin>>n;
int a[n];
int even =0;
int odd =0;
for(int i=0;i<n;i++){
cin>>a[i];
if(a[i]%2==0)even++;
else odd++;
}
int ans = abs(even-odd);
if(ans>1)cout<<"Hridoy\n";
else cout<<"Roy\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:57:30
- Judged At
- 2024-12-17 11:33:43
- Judged By
- Score
- 1
- Total Time
- 54ms
- Peak Memory
- 604.0 KiB