# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1034201 | vjudge1 | cmp (balkan11_cmp) | C++17 | 489 ms | 82512 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"
#include <bits/stdc++.h>
using namespace std;
mt19937 rng(time(nullptr) + 69);
void remember(int n) {
for (int i = 1; i <= 11; i++) {
if ((n >> i) & 1) bit_set(i+1);
}
}
int compare(int n) {
for (int i = 11; i >= 1; i--) {
int x = bit_get(i+1);
int y = (n >> i) & 1;
if (x > y) return -1;
else if (x < y) return 1;
}
return rng() % 3 - 1;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |