easyctf-iv-platform/judge/config.py

14 lines
297 B
Python
Raw Permalink Normal View History

2018-02-20 22:37:10 -06:00
import os
import pathlib
from typing import Dict
APP_ROOT = pathlib.Path(os.path.dirname(os.path.abspath(__file__)))
CONFINE_PATH = APP_ROOT / 'confine'
COMPILATION_TIME_LIMIT = 10
GRADER_TIME_LIMIT = 10
PARTIAL_JOB_SUBMIT_TIME_THRESHOLD = 2 # Seconds
PARTIAL_JOB_SUBMIT_CASES_THRESHOLD = 10