/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Wrong Answer 1ms 540.0 KiB
#2 Wrong Answer 11ms 772.0 KiB
#3 Wrong Answer 6ms 568.0 KiB
#4 Wrong Answer 5ms 768.0 KiB
#5 Wrong Answer 18ms 1.004 MiB
#6 Wrong Answer 18ms 1.004 MiB

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;
    }
    if (x > y) swap(x, y);

    bool roy = 0;
    if (n == 1) {
      roy = 1;
    } else if (n == 2) {
      roy = 0;
    } else if (x == 0) {
      roy = 0;
    } else if (x == y) {
      roy = 0;
    } else {
      roy = (x % 2 == 0) && (y == x+1);
    }

    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 17:23:04
Judged At
2024-10-03 17:23:04
Judged By
Score
0
Total Time
18ms
Peak Memory
1.004 MiB