mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2025-01-01 10:02:01 +00:00
dd7fe6ee44
比如使用include</dev/random>就可能导致编译器卡死,增加了一个编译超时。 重命名了exception模块 整理了部分格式
15 lines
245 B
Python
15 lines
245 B
Python
# coding=utf-8
|
|
|
|
|
|
result = {
|
|
"accepted": 0,
|
|
"runtime_error": 1,
|
|
"time_limit_exceeded": 2,
|
|
"memory_limit_exceeded": 3,
|
|
"compile_error": 4,
|
|
"format_error": 5,
|
|
"wrong_answer": 6,
|
|
"system_error": 7,
|
|
"waiting": 8
|
|
}
|