답안 #3273

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
3273 2013-08-30T10:04:52 Z movie_jo 0 = not cute / 1 = cute (kriii1_0) C
0 / 1
0 ms 1088 KB
#include <stdio.h>

int main(void)
{
	int N, a, b, x;

	scanf("%d", &N);

	while(N--)
	{
		scanf("%d", &x);

		a += (x == 1);
		b += (x == 0);
	}

	printf("Junhee is %scute!\n", a > b ? "":"not ");
}
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 1088 KB Output is correct
2 Correct 0 ms 1088 KB Output is correct
3 Incorrect 0 ms 1088 KB Output isn't correct
4 Halted 0 ms 0 KB -