Submission #14028

#TimeUsernameProblemLanguageResultExecution timeMemory
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...