ACGO出错指南
2024-11-21 11:40:03
发布于:广东
1.PE(Pattern Error)输出格式错误
2.RE(Runtime Error)运行错误
tips:数组太大也会RE哦!
3.TLE(Time Limit Exceed)超出时间限制/超时
tips:TLE一般是循环嵌套得太多层了,或者循环没出口!
4.OLE(Output Limit Exceed)输出超出限制/输出超限
这种情况没见过,有图私聊我!
5.AC(Accepted)答案正确/通过
6.WA(Wrong Answer)答案错误
tips:我遇到WA一般重写!! -_-
以上就是ACGO中常见的错误,有问题直接评论就AC了!
制作不易,点个爱心+关注吧 -_-"
全部评论 7
还有MLE
2024-04-27 来自 广东
1有图?
2024-04-27 来自 广东
0string a = "6"; while(1) a += a;
2024-04-27 来自 广东
0另外,这里的OLE用RE表示了
2024-04-27 来自 广东
0
OLE:
#include <iostream> #include <bits/stdc++.h> using namespace std; int n; // 创建结点的结构体,存储结点数据,结点编号用结点索引储存 struct node{ int v,r,l; }a[1005]; void dfs(int r){ // 输出根节点 cout << a[r].v << " "; // 递归处理左子树 dfs(a[r].l); // 递归处理右子树 dfs(a[r].r); } int main(){ cin >> n; for(int i = 1;i <= n;i++){ cin >> a[i].v >> a[i].l >> a[i].r; } dfs(1); return 0; }
52分钟前 来自 北京
0There is something wrong with the CF, please try again later(CF炸了)
2天前 来自 北京
0简称CFZL(CF炸了)
昨天 来自 北京
0
CE,但没图(编译错误,有的人一辈子都看不见)
2天前 来自 北京
0SE
2024-08-30 来自 广东
0???
2024-08-30 来自 广东
0也是一个测试点
2024-08-30 来自 广东
06
2024-08-30 来自 广东
0
有问题评论
2024-04-25 来自 广东
0int main(){ main(); } ←MLE 用这个
2024-05-26 来自 上海
0
PE图似乎放错了。
2024-04-24 来自
0对'-_-''
2024-04-25 来自 广东
0hhh
2024-08-30 来自 广东
0
有帮助,赞一个