/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Accepted 48ms 576.0 KiB
#3 Accepted 17ms 532.0 KiB
#4 Accepted 14ms 532.0 KiB
#5 Accepted 56ms 1.293 MiB
#6 Accepted 58ms 1.289 MiB

Code

#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
const ll mod=1e9+7;
ll rn[2000000];
mt19937 akil(chrono::steady_clock::now().time_since_epoch().count());
/*ll my_rand(int l, int r)
{
    return uniform_int_distribution<ll>(l, r) (akil);
}*/

void sufi() {
  int n;
  cin>>n;
  ll ara[n+1];
  int c1=0;
  int c2=0;
  for(int i=1;i<=n;i++){
    cin>>ara[i];
    if(ara[i]%2==0)c1++;
    else c2++;
  }
  if(c1==1&&c2!=1){
    cout<<"Roy"<<endl;
    return;
  }
  if(c1>c2)swap(c1,c2);
  if(c2-c1==1){
      cout<<"Roy"<<endl;
      return;
  }
  if(c1%2==0||c1==1&&c2==1||c1==c2){
    cout<<"Hridoy"<<endl;
    return;
  }
  cout<<"Roy"<<endl;


}

int main() {
  //for(int i=0;i<2000000;i++)rn[i]=my_rand(1,1e17);
    int t = 1;
    cin>>t;
    while (t--) {
        sufi();
    }
}

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:20:13
Judged At
2024-10-03 16:20:13
Judged By
Score
100
Total Time
58ms
Peak Memory
1.293 MiB