# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|
515646 | | KoD | Hop (COCI21_hop) | C++17 | | 40 ms | 1268 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 <bits/stdc++.h>
using std::vector;
using std::array;
using std::pair;
using std::tuple;
using i64 = std::int64_t;
int main() {
std::ios_base::sync_with_stdio(false);
std::cin.tie(nullptr);
int N;
std::cin >> N;
vector<i64> X(N);
for (auto& x : X) {
std::cin >> x;
}
int B = 1;
while (B * B * B < N) {
B += 1;
}
for (int i = 1; i < N; ++i) {
for (int j = 0; j < i; ++j) {
int x = j, y = i;
int l = 0;
while (true) {
l += 1;
if (x % B < y % B) {
std::cout << l;
break;
}
x /= B, y /= B;
}
std::cout << " \n"[j + 1 == i];
}
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |