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==0){
cout<<"Hridoy"<<endl;
}
else if(e==0){
cout<<"Roy"<<endl;
}
else if(a[0]%2==0&& a[n-1]%2==0){
cout<<"Hridoy"<<endl;
}
else if(a[0]%2!=0&& a[n-1]%2!=0){
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++11 (G++ 13.2.0)
- Submit At
- 2024-10-03 16:32:01
- Judged At
- 2024-12-17 11:34:34
- Judged By
- Score
- 1
- Total Time
- 44ms
- Peak Memory
- 556.0 KiB