# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
3273 | 2013-08-30T10:04:52 Z | movie_jo | 0 = not cute / 1 = cute (kriii1_0) | C | 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 "); }
# | Verdict | Execution time | Memory | 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 | - |