NEUOJ Presure Test
- 測試時間:2017-03-27 23:39:07
- 測試數(shù)量:每秒10發(fā)提交,共1000發(fā)提交
- 測試結果:
- 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