# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
7827 | gs13068 | 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<cstdio>
int main()
{
int i,n,a,s=0;
scanf("%d",&n);
for(i=0;i<n;i++)
{
scanf("%d",&a);
s+=a;
}
puts("Junhee is%scute!",s>a/2?" ":" not ");
}