├── .gitignore ├── README.md ├── check_dangerout_code.py ├── compile.py ├── config.py ├── db.py ├── db_yield.py ├── deal_data.py ├── faq.md ├── get_code.py ├── judge_main.py ├── judge_one.py ├── judge_result.py ├── judger.png ├── lorun ├── .gitignore ├── README.md ├── demo │ ├── 1498 │ │ ├── 0.in │ │ └── 0.out │ ├── 1602 │ │ ├── 0.in │ │ └── 0.out │ ├── 1602.c │ ├── Main.class │ ├── Main.java │ ├── a+b.c │ ├── a.out │ ├── m │ ├── temp.out │ ├── test.py │ └── testdata │ │ ├── 0.in │ │ ├── 0.out │ │ ├── 1.in │ │ ├── 1.out │ │ ├── 2.in │ │ └── 2.out └── src │ ├── access.c │ ├── access.h │ ├── convert.c │ ├── convert.h │ ├── diff.c │ ├── diff.h │ ├── limit.c │ ├── limit.h │ ├── lorun.c │ ├── lorun.h │ ├── run.c │ ├── run.h │ └── setup.py ├── nohup.out ├── producer.py ├── protect.py ├── result.jpg ├── run_program.py ├── start.sh ├── stop.sh └── worker.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/README.md -------------------------------------------------------------------------------- /check_dangerout_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/check_dangerout_code.py -------------------------------------------------------------------------------- /compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/compile.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/config.py -------------------------------------------------------------------------------- /db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/db.py -------------------------------------------------------------------------------- /db_yield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/db_yield.py -------------------------------------------------------------------------------- /deal_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/deal_data.py -------------------------------------------------------------------------------- /faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/faq.md -------------------------------------------------------------------------------- /get_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/get_code.py -------------------------------------------------------------------------------- /judge_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/judge_main.py -------------------------------------------------------------------------------- /judge_one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/judge_one.py -------------------------------------------------------------------------------- /judge_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/judge_result.py -------------------------------------------------------------------------------- /judger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/judger.png -------------------------------------------------------------------------------- /lorun/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | *.so 3 | -------------------------------------------------------------------------------- /lorun/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/lorun/README.md -------------------------------------------------------------------------------- /lorun/demo/1498/0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/lorun/demo/1498/0.in -------------------------------------------------------------------------------- /lorun/demo/1498/0.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/lorun/demo/1498/0.out -------------------------------------------------------------------------------- /lorun/demo/1602.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/lorun/demo/1602.c -------------------------------------------------------------------------------- /lorun/demo/1602/0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/lorun/demo/1602/0.in -------------------------------------------------------------------------------- /lorun/demo/1602/0.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/lorun/demo/1602/0.out -------------------------------------------------------------------------------- /lorun/demo/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/lorun/demo/Main.class -------------------------------------------------------------------------------- /lorun/demo/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/lorun/demo/Main.java -------------------------------------------------------------------------------- /lorun/demo/a+b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/lorun/demo/a+b.c -------------------------------------------------------------------------------- /lorun/demo/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/lorun/demo/a.out -------------------------------------------------------------------------------- /lorun/demo/m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/lorun/demo/m -------------------------------------------------------------------------------- /lorun/demo/temp.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lorun/demo/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/lorun/demo/test.py -------------------------------------------------------------------------------- /lorun/demo/testdata/0.in: -------------------------------------------------------------------------------- 1 | 11134 2245 2 | -------------------------------------------------------------------------------- /lorun/demo/testdata/0.out: -------------------------------------------------------------------------------- 1 | 13379 2 | -------------------------------------------------------------------------------- /lorun/demo/testdata/1.in: -------------------------------------------------------------------------------- 1 | 1 1 2 | -------------------------------------------------------------------------------- /lorun/demo/testdata/1.out: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /lorun/demo/testdata/2.in: -------------------------------------------------------------------------------- 1 | 123 456 2 | -------------------------------------------------------------------------------- /lorun/demo/testdata/2.out: -------------------------------------------------------------------------------- 1 | 579 2 | -------------------------------------------------------------------------------- /lorun/src/access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/lorun/src/access.c -------------------------------------------------------------------------------- /lorun/src/access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/lorun/src/access.h -------------------------------------------------------------------------------- /lorun/src/convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/lorun/src/convert.c -------------------------------------------------------------------------------- /lorun/src/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/lorun/src/convert.h -------------------------------------------------------------------------------- /lorun/src/diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/lorun/src/diff.c -------------------------------------------------------------------------------- /lorun/src/diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/lorun/src/diff.h -------------------------------------------------------------------------------- /lorun/src/limit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/lorun/src/limit.c -------------------------------------------------------------------------------- /lorun/src/limit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/lorun/src/limit.h -------------------------------------------------------------------------------- /lorun/src/lorun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/lorun/src/lorun.c -------------------------------------------------------------------------------- /lorun/src/lorun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/lorun/src/lorun.h -------------------------------------------------------------------------------- /lorun/src/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/lorun/src/run.c -------------------------------------------------------------------------------- /lorun/src/run.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/lorun/src/run.h -------------------------------------------------------------------------------- /lorun/src/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/lorun/src/setup.py -------------------------------------------------------------------------------- /nohup.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/nohup.out -------------------------------------------------------------------------------- /producer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/producer.py -------------------------------------------------------------------------------- /protect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/protect.py -------------------------------------------------------------------------------- /result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/result.jpg -------------------------------------------------------------------------------- /run_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/run_program.py -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/start.sh -------------------------------------------------------------------------------- /stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/stop.sh -------------------------------------------------------------------------------- /worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/acmjudger/HEAD/worker.py --------------------------------------------------------------------------------