# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
41081 | hsb154 | cmp (balkan11_cmp) | C++14 | 2460 ms | 92960 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"
void remember(int n) {
int mask = 7 << 9;
int me = 0;
int shift = 9;
for (int i = 0; i<4; i++) {
me = me * 8 + ((mask&n) >> shift)+1;
bit_set(me);
shift -= 3;
mask >>= 3;
}
}
int compare(int b) {
int ret;
int mask = 7 << 9;
int shift = 9;
int me = 0;
int left = 1;
int right = 4;
int mid = (left + right) / 2;
int saveHeight=-1;
while (1) {
mask = 7 << 9;
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |