From da1ef60ac7e8ebe530b0502473c1d59c06970f15 Mon Sep 17 00:00:00 2001 From: Bruno Ribas Date: Fri, 4 Nov 2016 15:13:59 -0200 Subject: problemtemplate: Adding py2 and py3 support Tests scripts for both py2 and py3 are working. Signed-off-by: Bruno Ribas --- doc/problemexamples/problemtemplate/limits/py3 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 doc/problemexamples/problemtemplate/limits/py3 (limited to 'doc/problemexamples/problemtemplate/limits/py3') diff --git a/doc/problemexamples/problemtemplate/limits/py3 b/doc/problemexamples/problemtemplate/limits/py3 new file mode 100644 index 0000000..5701ffc --- /dev/null +++ b/doc/problemexamples/problemtemplate/limits/py3 @@ -0,0 +1,15 @@ +#!/bin/bash +# this executable shall output the number of second of timelimit in the first line, for the given problem and with language according to this filename +echo 1 +# and the number of repetitions to run within the given timelimit in the second line +echo 1 +# and the maximum amount of memory per repetition in the third line (in Mbytes) +echo 1024 +# and the maximum file size in the fourth line (in kbytes) +echo 1024 +# and shall return zero to indicate no failure +exit 0 +# the idea is that this file will be executed by the autojudge in the first time the autojudge downloads a problem, so as it will be +# able to decide the proper time limit for the machine where it is running. If one wants to fix a predefined time limit, then it is +# enough to write a script like this one with the desired value. Otherwise, one can build any more sophisticated program that outputs +# the value. -- cgit v1.2.3