Wrong Answer
Code
#include <iostream>
#include <vector>
using namespace std;
int main() {
int T;
cin >> T;
while (T--) {
int N;
cin >> N;
vector<int> A(N);
int count_odd = 0, count_even = 0;
for (int i = 0; i < N; i++) {
cin >> A[i];
if (A[i] % 2 == 0) {
count_even++;
} else {
count_odd++;
}
}
if (count_odd > count_even) {
cout << "Roy" << endl;
} else {
cout << "Hridoy" << 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 17:09:21
- Judged At
- 2024-11-11 02:46:44
- Judged By
- Score
- 1
- Total Time
- 74ms
- Peak Memory
- 576.0 KiB