/ SeriousOJ /

Record Detail

Compile Error

foo.c:1:10: fatal error: bits/stdc++.h: No such file or directory
    1 | #include <bits/stdc++.h>
      |          ^~~~~~~~~~~~~~~
compilation terminated.

Code

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

int main() {
      int t;
      cin>>t;
      while(t--)
      {  
        int n,i,odd=0,even=0,x;
        cin>>n;
        for(i=1;i<=n;i++){
         cin>>x;
         if(x%2==0)even++;
         else odd++;
        }
        if(n%2==0||even>odd)cout<<"Hridoy";
        else cout<<"Roy";
        cout<<endl;
      }

    return 0;
}

Information

Submit By
Type
Submission
Problem
P1102 Odd-Even Game
Contest
Brain Booster #6
Language
C99 (GCC 13.2.0)
Submit At
2024-10-03 16:47:43
Judged At
2024-10-03 16:47:43
Judged By
Score
0
Total Time
0ms
Peak Memory
0 Bytes