mirror of
https://github.com/tiennm99/codechef.git
synced 2026-06-10 12:10:46 +00:00
24 lines
359 B
C++
24 lines
359 B
C++
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
int main() {
|
|
int n,
|
|
a,
|
|
e = 0,
|
|
o = 0;
|
|
cin >> n;
|
|
while (n--) {
|
|
cin >> a;
|
|
if (a%2 == 0)
|
|
++e;
|
|
else
|
|
++o;
|
|
}
|
|
if (e > o)
|
|
cout << "READY FOR BATTLE";
|
|
else
|
|
cout << "NOT READY";
|
|
cout << endl;
|
|
return 0;
|
|
} |