# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
24166 | ms990606 | cmp (balkan11_cmp) | C11 | 1903 ms | 82560 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) {//2926
int N=n;
int a=N/(10*8*6);//6
N%=(10*8*6);
int b=N/(8*6);//0
N%=(8*6);
int c=N/6;//5
N%=6;
int d=N;//6
a+=1;//7
b+=1+12;//13
c+=1+12+10;//28
d+=1+12+10+8;//37
bit_set(a);
bit_set(b);
bit_set(c);
bit_set(d);
}
int compare(int e)
{
int N=e;
int a=N/(10*8*6);//6
N%=(10*8*6);
int b=N/(8*6);//0
N%=(8*6);
int c=N/6;//5
N%=6;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |