Wrong Answer
Code
#include <bits/stdc++.h>
using namespace std;
void solve_by_payel(int n, int samp[])
{
int odd_count = 0, even_count = 0;
for(int i = 0; i < n; i++)
{
if (samp[i] % 2 == 0)
{
even_count++;
}
else
{
odd_count++;
}
}
if (even_count <= odd_count)
{
cout << "Roy" << endl;
}
else
{
cout << "Hridoy" << endl;
}
}
int main()
{
int t;
cin >> t;
while (t--)
{
int n;
cin >> n;
int samp[n];
for(int i = 0; i < n; i++)
{
cin >> samp[i];
}
solve_by_payel(n, samp);
}
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:00:29
- Judged At
- 2024-11-11 02:47:01
- Judged By
- Score
- 1
- Total Time
- 76ms
- Peak Memory
- 576.0 KiB