/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Wrong Answer 48ms 536.0 KiB
#3 Wrong Answer 16ms 532.0 KiB
#4 Wrong Answer 13ms 532.0 KiB
#5 Wrong Answer 53ms 932.0 KiB
#6 Wrong Answer 52ms 932.0 KiB

Code

#include<bits/stdc++.h>
using namespace std;
int main(){
    int T; cin>>T;
    while (T--){
        int N; cin>>N;
        vector<int>maher(N);
        for(int i = 0; i<N; i++){
            cin>>maher[i];
        }
        int odd_kemonachis_vai = 0;
        int even_hridoy_vai = 0;
        for(int i = 0; i<N; i++){
            if(maher[i]%2 ==0){
                even_hridoy_vai++;
            }
            else odd_kemonachis_vai++;
        }
        if(odd_kemonachis_vai>even_hridoy_vai){
            cout<<"Roy"<<endl;
        }
        else if(odd_kemonachis_vai<even_hridoy_vai){
            cout<<"Hridoy"<<endl;
        }
        else cout<<"Hridoy"<<endl;
    }
}

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 17:02:43
Judged At
2024-10-03 17:02:43
Judged By
Score
1
Total Time
53ms
Peak Memory
932.0 KiB