# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
44768 | tjd229 | cmp (balkan11_cmp) | C++11 | 2385 ms | 99656 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) {
//edit this
int i;
int a = n;
int r[4];
for (i = 4; i--; ){
r[i] = a % 8;
a >>= 3;
}
//[3]:per 8 [2]:per 64 [1]:per 64*8 [0]:per 4096
for (a = 1, i = 0; i < 4;i++){
a = (a<<3) + r[i];
bit_set(a);
}
}
int compare(int b) {
//edit this
int i;
int r[4];
int pt[4];
int a = b;
for (i = 4; i--;){
r[i] = a % 8;
a >>=3;
}
for (a = 1, i = 0; i < 4; i++){
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |