# HG changeset patch # User Nattee Niparnan # Date 2018-06-12 12:58:25 # Node ID 2f1bb4c72d6bcf1c62804c7f373facaa069a7345 # Parent b409073698a06845def4c9b15566435f2b3a8e65 set minimum for python to 512 diff --git a/std-script/run b/std-script/run --- a/std-script/run +++ b/std-script/run @@ -109,7 +109,7 @@ when "ruby" run_command = "#{problem_home}/script/box -a 2 -f -T -t #{time_limit*=2} -m #{mem_limit} #{RUBY_OPTION} -i #{input_file_name} -o output.txt /usr/bin/ruby #{program_name} " when "python" - run_command = "#{problem_home}/script/box -a 2 -f -T -t #{time_limit*=2} -m #{[128 * 1024,mem_limit].max} #{PYTHON_OPTION} -i #{input_file_name} -o output.txt /usr/bin/python3 #{program_name} " + run_command = "#{problem_home}/script/box -a 2 -f -T -t #{time_limit*=2} -m #{[512 * 1024,mem_limit].max} #{PYTHON_OPTION} -i #{input_file_name} -o output.txt /usr/bin/python3 #{program_name} " when "haskell" run_command = "#{problem_home}/script/box -a 2 -f -T -t #{time_limit} -m #{[512 * 1024,mem_limit].max} #{HASKELL_OPTION} -i #{input_file_name} -o output.txt #{program_name} " when "php"