About common errors in OJ

This switched https://blog.csdn.net/qq_38608194/article/details/79768545, thank bloggers!

(1)Wrong Answer

 答案错误
 一般是题意理解错误或是没有考略全面,导致有些情况答案错误。

(2)Compile Error

 编译错误
 语法错误或语音类型跟头文件不符合,或某个类型名没有定义。

(3)Runtime Error

 运行时出错
 实际情况中一般都是数组太小,再者就不清楚了。

(4)Output Limit Exceed

 输出超限制
 你的答案有多的东西被输出。

(5)Presentation Error

 格式错误
 特别注意空格或特殊处理的情况。

(6)Memory Limit Exceed

 超内存
 请注意节省空间,不随便开空间。

(7)Time Limit Exceed

 超时
 注意使用更快更好的算法。比如:将冒泡排序改为快排(省时)。

Guess you like

Origin blog.csdn.net/weixin_40688217/article/details/90047721