/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 536.0 KiB
#2 Wrong Answer 11ms 532.0 KiB
#3 Wrong Answer 6ms 532.0 KiB
#4 Accepted 7ms 532.0 KiB
#5 Accepted 26ms 908.0 KiB
#6 Accepted 17ms 908.0 KiB

Code

#include <bits/stdc++.h>
using namespace std;

#define FAST ios_base::sync_with_stdio(false);cin.tie(NULL);
using ll = long long;

int main() {
  FAST;
  
  int tc = 1, ti;
  cin >> tc;

  for (ti = 1; ti <= tc; ++ti) {
    int n, i, p, x, y;
    cin >> n;

    vector<int> a(n);
    x = y = 0;
    for (i = 0; i < n; ++i) {
      cin >> p;
      if (p & 1) x += 1;
        else y += 1;
    }

    bool roy = (min(x, y) & 1);
    if (n == 1) roy = 1;
    if (n == 2) roy = 0;

    cout << (roy ? "Roy" : "Hridoy") << "\n";
  }

  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:46:57
Judged At
2024-10-03 16:46:57
Judged By
Score
61
Total Time
26ms
Peak Memory
908.0 KiB