/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 488.0 KiB
#2 Wrong Answer 19ms 616.0 KiB
#3 Wrong Answer 9ms 564.0 KiB

Code

#include<bits/stdc++.h>
using namespace std;
#define ll long long
void solve(){
    int n;
    cin >> n;
    int even = 0, odd = 0;
    for(int i = 0; i < n; i++){
        int x; 
        cin >> x;
        if(x % 2 == 0){
            even++;
        }
        else {
            odd++;
        }
    }
    if(abs(even - odd) <= 1){
        cout << "Roy\n";
    }
    else {
        cout << "Hridoy\n";
    }
}
int main(){
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    int t = 1;
    cin >> t;
    while(t--){
        solve();
    }
    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 15:40:28
Judged At
2024-11-11 02:50:25
Judged By
Score
1
Total Time
19ms
Peak Memory
616.0 KiB