# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
674319 | Hostek | Rack (eJOI19_rack) | C++17 | 1 ms | 256 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.
// https://oj.uz/problem/view/eJOI19_rack
// European Junior Olympiad in Informatics 2019
// Day 1 Tasks
// Hanging Rack
#include <bitset>
#include <iostream>
constexpr int mod = 1000 * 1000 * 1000 + 7;
long long pot(long long a, long long b) {
if (b == 1) return a;
if (a == 0) return 0;
if (b == 0) return 1;
if (b % 2 == 1)
return (a * pot(a, b - 1)) % mod;
else {
long long c = pot(a, b / 2);
return (c * c) % mod;
}
}
std::bitset<10000000> tab;
size_t convert_to_bin(long long n) {
if (n == 0) {
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |