OpenVJ/robots/utils.py

17 lines
295 B
Python
Raw Permalink Normal View History

# coding=utf-8
2016-03-02 11:36:14 +08:00
class Language(object):
C = 0
CPP = 1
2016-03-02 11:36:14 +08:00
Java = 2
class Result(object):
2016-03-05 16:57:57 +08:00
accepted = 0
2016-03-02 11:36:14 +08:00
runtime_error = 1
2016-03-05 16:57:57 +08:00
time_limit_exceeded = 2
2016-03-02 11:36:14 +08:00
memory_limit_exceeded = 3
compile_error = 4
format_error = 5
wrong_answer = 6
system_error = 7
waiting = 8