# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
39343 | ztrong | Bali Sculptures (APIO15_sculpture) | C++14 | 166 ms | 2200 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 llint long long
#define fi first
#define se second
#define BIT(x, i) ((x>>i)&1ll)
#define MASK(i) (1ll<<i)
#define db(x) cout << #x << " = " << x << endl;
using namespace std;
void openFile() {
ios_base :: sync_with_stdio(false);
cin.tie(NULL);
#ifdef Tr___
freopen("test.inp", "r", stdin);
freopen("test.out", "w", stdout);
#else
//freopen("tname.inp", "r", stdin);
//freopen("tname.out", "w", stdout);
#endif
}
template <typename T>
inline void read(T &ret){
register char c = getchar(); bool neg = false; ret = 0;
while (c < '0' || c > '9'){ if (c == '-') neg = true; c = getchar(); }
while (c >= '0' && c <= '9'){ ret = (ret << 1) + (ret << 3) + c - '0';
c = getchar(); }
if (neg) ret = -ret;
}
template <typename T>
# | 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... |