# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1173002 | coolboy19521 | Bigger segments (IZhO19_segments) | C++17 | 0 ms | 320 KiB |
#include "bits/stdc++.h"
#define mxN 500005
#define bfS 1<<15
using namespace std;
long long pr[mxN];
int a[mxN];
inline namespace putin{
char buf[bfS];
int pos, len;
char nextChar(){
if (pos == len){
len = fread(buf, 1, bfS, stdin), pos = 0;
if (!len) return EOF;
}
return buf[pos ++];
}
int nextInt(){
int s = 1, x = 1;
char c;
while (!isdigit(c = nextChar()))
if ('-' == c) x = -1;
x *= c - '0';
while (isdigit(c = nextChar()))
x = x * 10 + c - '0';
return x;
}
# | 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... |