# 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=`seq 1 10`

# Test with example input
SAMPLE_TESTS=0

# Number of points per test
POINTS_PER_TEST=10

# Time limit in seconds
TIME_LIMIT=2

# 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'
