# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
4445 | yourID | 0 = not cute / 1 = cute (kriii1_0) | C++98 | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <stdio.h>
int main()
{
int a=0,b=0,N,c;
scanf ("%d",&N); while (N--){
scanf ("%d",&c);
if (c) b++;
else a++;
}
puts (a>b?"Junhee is not cute!":"Junhee is cute!");
return 0
}