# Per-task config
# All variables can be overriden in test-specific <test>.config

TASK_TYPE=file
IO_TYPE=stdio

# A list of all tests
TESTS="1a 1b 2a 2b 3 4 5 6 7 8a 8b 9 10"

# Test with example input
SAMPLE_TESTS="0a 0b"

# Number of points per test
POINTS_PER_TEST=10

# Time limit in seconds
TIME_LIMIT=5

# Memory limit in kilobytes
MEM_LIMIT=65536

# Command used to check output correctness
# Returns exit code 1 if output is incorrect, 0 if correct
# fd1 is connect to evaluator log, feel free to log anything
# fd2 is an optional one-line verdict
# The checker can generate $TDIR/$TEST.pts to assign points irregularly
OUTPUT_CHECK='$PDIR/judge $TDIR/$TEST.out $TDIR/$TEST.ok $TDIR/$TEST.in'
