QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#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
詳細信息
Invalid Configuration File: failed to read Nin and Nout