# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
471126 | chointae | cmp (balkan11_cmp) | C++17 | 1127 ms | 65912 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 "cmp.h"
int A;
void remember(int n) {
//edit this
A = n;
//bit_set(n);
}
int compare(int b) {
//edit this
//return bit_get(13);
if (b < A) return -1;
else if (b > A) return 1;
else return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |