# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
797453 | kingfran1907 | Segments (IZhO18_segments) | C++14 | 178 ms | 53680 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>
#define X first
#define Y second
using namespace std;
typedef long long llint;
const llint off = 1LL << 32;
const int maxn = 2e5+10;
struct node {
int val;
node *l, *r;
node() {
val = 0;
l = r = nullptr;
}
};
typedef node* pnode;
int value(pnode tren) {
if (tren == nullptr) return 0;
return tren->val;
}
pnode L(pnode tren) {
if (tren == nullptr) return nullptr;
return tren->l;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |