# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
49309 | tmwilliamlin168 | Building Bridges (CEOI17_building) | C++14 | 79 ms | 35052 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 namespace std;
#define ll long long
#define pll pair<ll, ll>
#define fi first
#define se second
inline int in() {
bool minus = false;
int result = 0;
char ch = getchar_unlocked();
while (true) {
if(ch == '-')
break;
if(ch >= '0' && ch <= '9')
break;
ch = getchar_unlocked();
}
if(ch == '-')
minus = true;
else
result = ch-'0';
while(true) {
ch = getchar_unlocked();
if (ch < '0' || ch > '9')
break;
result = result*10 + (ch - '0');
}
return minus?-result:result;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |