NEUOJ Presure Test
- 测试时间:2017-03-27 23:39:07
- 测试数量:每秒10发提交,共1000发提交
- 测试结果:
- 668个提交判断无误
- 332个提交判断有误(可能是代码问题)
- OLE判为TLE,原因可能是输出没有超限,先超时
- RE判为TLE,原因不明
- MLE判为TLE,原因同OLE
- 其他情况无误判
- 最长判题时间:227秒
- 测试结果log:http://pastebin.ubuntu.com/24266251/
- 测试代码:
- AC
#include<iostream> using namespace std; int main() { cout<<"Hello World!"; return 0; } - CE
int main() { cin>>a; cout<<b; return 100; } - MLE
#include<iostream> #include<cstdio> #include<cstdlib> #include<ctime> #include<vector> using namespace std; vector<int> a; int main(){ srand(time(NULL)); while(1) a.push_back(rand()); return 0; } - OLE
#include<iostream> #include<cstdio> #include<cstdlib> #include<ctime> #include<vector> using namespace std; vector<int> a; int main(){ srand(time(NULL)); while(1) cout<<rand()<<endl; return 0; } - RE
#include<iostream> #include<cstdio> #include<cstdlib> #include<ctime> #include<vector> using namespace std; int a[10]; int main(){ srand(time(NULL)); a[1000000]=1; cout<<a[12131]/0; return 0; } - TLE
#include<iostream> #include<cstdio> #include<cstdlib> #include<ctime> #include<vector> using namespace std; vector<int> a; int main(){ srand(time(NULL)); a.push_back(rand()); while(1) { a[0]++; a[0]<<=1; a[0]--; } cout<<a[0]; return 0; } - WA
#include<iostream> #include<cstdio> #include<cstdlib> #include<ctime> #include<vector> using namespace std; vector<int> a; int main(){ srand(time(NULL)); cout<<rand(); return 0; }
- AC