제출 #14028

#제출 시각아이디문제언어결과실행 시간메모리
14028gs140040 = not cute / 1 = cute (kriii1_0)C++14
1 / 1
0 ms1084 KiB
#include <cstdio>
#include <algorithm>
using namespace std;


int main(){
    int c = 0, n;
    scanf("%d",&n);
    while (n--) {
        int t;
        scanf("%d",&t);
        c += 2 * t - 1;
    }
    printf("Junhee is %scute!",c>0?"":"not ");
}
#Verdict Execution timeMemoryGrader output
Fetching results...