# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
538650 | emsilverfox | Intercastellar (JOI22_ho_t1) | C++14 | 470 ms | 5328 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 <iostream>
#include <vector>
#include <algorithm>
using namespace std;
typedef long long ll;
ll fun(ll brojic)
{
while (brojic % 2 == 0)
brojic /= 2;
return brojic;
}
ll pow2(int n)
{
ll pov = 1;
while (n--) pov *= 2;
return pov;
}
ll funner(ll brojic)
{
int ret = 0;
while (brojic % 2 == 0)
{
ret++;
brojic /= 2;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |