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

TASK_TYPE=open-data

# A list of all tests
TESTS=`seq -w 1 10`

# Test with example input
SAMPLE_TESTS=00

# Number of points per test
POINTS_PER_TEST=10

# 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 $PDIR/$TEST.in $TDIR/$TEST.out'
