QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#187033 | #1. I/O Test | Nax_hueux | Compile Error | / | / | C++14 | 2.2kb | 2023-09-24 14:02:03 | 2023-09-24 14:02:03 |
Judging History
config.txt
#include<cstdio> #include<algorithm> #include<cstring> #include<cctype> #include<vector> using namespace std; inline int read(){ int x=0,f=0; char c=getchar(); while(!isdigit(c)) f|=c=='-',c=getchar(); while(isdigit(c)) x=x*10+(c^'0'),c=getchar(); return f?-x:x; } const int maxn=300010; struct Data{ int sum,lmax,rmax,ans; }; inline Data operator+(const Data x,const Data y){ Data res; res.sum=x.sum+y.sum; res.lmax=max(x.lmax,x.sum+y.lmax); res.rmax=max(x.rmax+...
input_test
output_test
Details
Invalid Configuration File: failed to read Nin and Nout