/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 328.0 KiB
#2 Wrong Answer 30ms 616.0 KiB
#3 Wrong Answer 11ms 328.0 KiB
#4 Accepted 9ms 588.0 KiB
#5 Accepted 32ms 952.0 KiB
#6 Accepted 31ms 840.0 KiB

Code

#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define M int(1e9+7)

int main()
{
    ios::sync_with_stdio(false); cin.tie(0); cout.tie(0);


    int t;cin>>t;while(t--){
        int n;cin>>n;

        vector<int>v(n);
        int odd_count=0,even_count=0;

        for(int i=0;i<n;i++){
            cin>>v[i];

            if(v[i] %2==0){
                even_count++;
            }
            else odd_count++;
        }

        int val=min(odd_count,even_count);

        if(n==1){
            cout<<"Roy"<<endl;
        }
        else{

        if(val%2==0){
            cout<<"Hridoy"<<endl;
        }
        else cout<<"Roy"<<endl;
        }
        

        


        
    }
     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:39:19
Judged At
2024-10-03 16:39:19
Judged By
Score
61
Total Time
32ms
Peak Memory
952.0 KiB