From 3aa9b9b319fc9090cb8e6adbb9f627666090217d Mon Sep 17 00:00:00 2001 From: virusdefender Date: Tue, 10 May 2016 21:02:43 +0800 Subject: [PATCH] =?UTF-8?q?g++=E7=BC=96=E8=AF=91=E5=99=A8=E5=86=85?= =?UTF-8?q?=E5=AD=98=E9=99=90=E5=88=B6=E6=94=BE=E5=AE=BD=E5=88=B0256M?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- judge/language.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/judge/language.py b/judge/language.py index 7ab62855..11872a90 100644 --- a/judge/language.py +++ b/judge/language.py @@ -18,7 +18,7 @@ languages = { "src_name": "main.cpp", "code": 2, "compile_max_cpu_time": 3000, - "compile_max_memory": 128 * 1024 * 1024, + "compile_max_memory": 256 * 1024 * 1024, "compile_command": "/usr/bin/g++ -DONLINE_JUDGE -O2 -w -fmax-errors=3 -std=c++11 {src_path} -lm -o {exe_path}/main", "spj_compile_command": "/usr/bin/g++ -DONLINE_JUDGE -O2 -Werror -fmax-errors=3 -std=c++11 {src_path} -lm -o {exe_path}", "execute_command": "{exe_path}/main",