diff --git a/Hydro/system_test/1/data/coin.h b/Hydro/system_test/1/data/coin.h index 60ace0df..da2fbaaa 100644 --- a/Hydro/system_test/1/data/coin.h +++ b/Hydro/system_test/1/data/coin.h @@ -1,45 +1,3 @@ -#include - -using namespace std; - -namespace ahfiuasykjbvzkw { - static int n, m, cnt; - static bool hasUsedGetN = false; - static bool hasSubmitted = false; - - void RE() { - puts("re"); - exit(0); - } - - int getn() { - if (hasUsedGetN) RE(); - cin >> n; - hasUsedGetN = 1; - m = rand() % n + 1; - return n; - } - - int query(int x) { - if (!hasUsedGetN || hasSubmitted) RE(); - cnt++; - if (cnt > 100000) RE(); - if (x == m) - return (rand() % 10 <= 3); - else - return (rand() % 10 <= 4); - } - - void submit(int x) { - if (hasSubmitted) RE(); - if (x == m) - puts("ok532124524657743124323"); - else - puts("wa"); - hasSubmitted = 1; - } -} // namespace ahfiuasykjbvzkw - -using ahfiuasykjbvzkw::getn; -using ahfiuasykjbvzkw::query; -using ahfiuasykjbvzkw::submit; +version https://git-lfs.github.com/spec/v1 +oid sha256:cd350b2ecde882aa62f551b06d90694ff40a754f2c8efe5d4ce3e2c0965c2814 +size 932 diff --git a/Hydro/system_test/1/data/config.yaml b/Hydro/system_test/1/data/config.yaml index 70d0df1c..b51df9b0 100644 --- a/Hydro/system_test/1/data/config.yaml +++ b/Hydro/system_test/1/data/config.yaml @@ -1,24 +1,3 @@ -type: default - -filename: null - -checker_type: testlib -checker: spj.cc - -user_extra_files: - - coin.h - -time: 100ms -memory: 256m - -cases: - - input: data1.in - - input: data2.in - - input: data3.in - - input: data4.in - - input: data5.in - - input: data6.in - - input: data7.in - - input: data8.in - - input: data9.in - - input: data10.in +version https://git-lfs.github.com/spec/v1 +oid sha256:85eb720e133589c80338febae8bff1002243ed19435f4da0741b19bfbc6bdb9f +size 334 diff --git a/Hydro/system_test/1/data/spj.cc b/Hydro/system_test/1/data/spj.cc index 597d5cde..55aa1d19 100644 --- a/Hydro/system_test/1/data/spj.cc +++ b/Hydro/system_test/1/data/spj.cc @@ -1,21 +1,3 @@ -/** - * @file spj.cc - * @author Macesuted Kysic - * @date 2021-02-04 - * - * @copyright Copyright (c) 2021 - * - */ - -#include - -#include "testlib.h" - -int main(int argc, char* argv[]) { - registerTestlibCmd(argc, argv); - std::string s = ouf.readToken(); - if (s == "ok532124524657743124323") - quitf(_ok, "Correct"); - else - quitf(_wa, "Wrong Answer"); -} +version https://git-lfs.github.com/spec/v1 +oid sha256:e4a39b388f198ba2340c863622a67f02a95c20f988a885da95b9c6e20523b392 +size 380 diff --git a/Hydro/system_test/3/data/checker.cc b/Hydro/system_test/3/data/checker.cc index 9dd866d2..5a0b2bdb 100644 --- a/Hydro/system_test/3/data/checker.cc +++ b/Hydro/system_test/3/data/checker.cc @@ -1,23 +1,3 @@ -/** - * @file checker.cpp - * @author Macesuted (i@macesuted.moe) - * @date 2021-10-28 - * - * @copyright Copyright (c) 2021 - * - */ - -#include - -#include "testlib.h" - -using namespace std; - -int main(int argc, char* argv[]) { - registerTestlibCmd(argc, argv); - int n = inf.readInt(); - for (int i = 1; i <= n; i++) - if (ouf.readInt() != i) - quitf(_wa, "Wrong Answer."); - quit(_ok, "Accepted!"); -} +version https://git-lfs.github.com/spec/v1 +oid sha256:5597f2c51f71365844ae7e8b26e36705fcb75bec46d678406669c3978e4e8364 +size 434 diff --git a/Hydro/system_test/5/data/config.yaml b/Hydro/system_test/5/data/config.yaml index 87af86f2..12f84b39 100644 --- a/Hydro/system_test/5/data/config.yaml +++ b/Hydro/system_test/5/data/config.yaml @@ -1,4 +1,3 @@ -type: interactive -time: 100ms -memory: 64m -interactor: interactor.cc +version https://git-lfs.github.com/spec/v1 +oid sha256:cb97ec22604228618b5d5801bceb24ba0108d54f0832d25961cf174038468b00 +size 68 diff --git a/Hydro/system_test/5/data/interactor.cc b/Hydro/system_test/5/data/interactor.cc index 34c41e0a..9aeece1f 100644 --- a/Hydro/system_test/5/data/interactor.cc +++ b/Hydro/system_test/5/data/interactor.cc @@ -1,22 +1,3 @@ -#include - -#include "testlib.h" - -using namespace std; - -int main(int argc, char* argv[]) { - setName("Interactor A+B"); - registerInteraction(argc, argv); - - // reads number of queries from test (input) file - int a = inf.readInt(); - int b = inf.readInt(); - // writes query to the solution, endl makes flush - cout << a << " " << b << endl; - int ans; - cin >> ans; - if (a + b == ans) - quitf(_ok, "!"); - else - quitf(_wa, "?"); -} +version https://git-lfs.github.com/spec/v1 +oid sha256:0d3cc760b26d5e5b0adabe60421bb05ed9e1e7d18cf383069b2d15e2ec5769e8 +size 500 diff --git a/Hydro/system_test/7/data/config.yaml b/Hydro/system_test/7/data/config.yaml index 5e51a18b..b98ccaf7 100644 --- a/Hydro/system_test/7/data/config.yaml +++ b/Hydro/system_test/7/data/config.yaml @@ -1,73 +1,3 @@ -type: default - -time: 100ms -memory: 8m - -subtasks: - - score: 20 - id: 0 - cases: - - input: data1-1.in - output: data1-1.ans - - input: data1-2.in - output: data1-2.ans - - input: data1-3.in - output: data1-3.ans - - input: data1-4.in - output: data1-4.ans - - input: data1-5.in - output: data1-5.ans - - score: 20 - id: 1 - cases: - - input: data2-1.in - output: data2-1.ans - - input: data2-2.in - output: data2-2.ans - - input: data2-3.in - output: data2-3.ans - - input: data2-4.in - output: data2-4.ans - - input: data2-5.in - output: data2-5.ans - - score: 20 - id: 2 - cases: - - input: data3-1.in - output: data3-1.ans - - input: data3-2.in - output: data3-2.ans - - input: data3-3.in - output: data3-3.ans - - input: data3-4.in - output: data3-4.ans - - input: data3-5.in - output: data3-5.ans - - score: 20 - id: 3 - if: [2] - cases: - - input: data4-1.in - output: data4-1.ans - - input: data4-2.in - output: data4-2.ans - - input: data4-3.in - output: data4-3.ans - - input: data4-4.in - output: data4-4.ans - - input: data4-5.in - output: data4-5.ans - - score: 20 - id: 4 - if: [1, 3] - cases: - - input: data5-1.in - output: data5-1.ans - - input: data5-2.in - output: data5-2.ans - - input: data5-3.in - output: data5-3.ans - - input: data5-4.in - output: data5-4.ans - - input: data5-5.in - output: data5-5.ans +version https://git-lfs.github.com/spec/v1 +oid sha256:2880b3ba0cfa17c1fdb57dbf6713b731a6fe107614b7f664fc1c142e81a4082e +size 1601 diff --git a/Hydro/system_test/8/data/checker.cc b/Hydro/system_test/8/data/checker.cc index 2cb2c43c..82472cfc 100644 --- a/Hydro/system_test/8/data/checker.cc +++ b/Hydro/system_test/8/data/checker.cc @@ -1,11 +1,3 @@ -#include "testlib.h" - -int main(int argc, char* argv[]) { - setName("compares two signed integers"); - registerTestlibCmd(argc, argv); - int ja = ans.readInt(); - int pa = ouf.readInt(); - if (ja != pa) - quitf(_wa, "expected %d, found %d", ja, pa); - quitf(_ok, "answer is %d", ja); -} +version https://git-lfs.github.com/spec/v1 +oid sha256:7a62c8548313657c0b1356fcd6d49c71474f618ea42a4b28b18d41c6058d184f +size 303 diff --git a/LibreOJ/10114/data/test.bat b/LibreOJ/10114/data/test.bat index 720453dd..d48b2c5f 100644 --- a/LibreOJ/10114/data/test.bat +++ b/LibreOJ/10114/data/test.bat @@ -1,16 +1,3 @@ -@echo off -if "%1"=="" goto loop -echo TEST -echo Test%1 -copy stars%1.in stars.in >nul -time nul -echo Problem Test -echo Data %1 -timenul -echo ÆÀ²âÅú´¦ÀíÉú³É¹¤¾ß CB(Check-Bat) -echo Data %1 -time -#include - -int get_num() -{ - std::cout << "get_num" << std::endl << std::flush; - int ret; - std::cin >> ret; - return ret; -} - -int guess(int index, int x) -{ - std::cout << "guess " << index << " " << x << std::endl << std::flush; - int ret; - std::cin >> ret; - return ret; -} - -void submit(const std::vector &result) -{ - std::cout << "submit "; - for (std::vector::const_iterator iter = result.begin(); iter != result.end(); iter++) - { - std::cout << *iter << " "; - } - std::cout << std::endl << std::flush; -} +version https://git-lfs.github.com/spec/v1 +oid sha256:e34a20a5a4ca94851c067a99bc0348d2ea49c799b572cd3f2a27474fdd1353cb +size 581 diff --git a/LibreOJ/6/data/maker.py b/LibreOJ/6/data/maker.py index 274df696..3d371413 100644 --- a/LibreOJ/6/data/maker.py +++ b/LibreOJ/6/data/maker.py @@ -1,4 +1,3 @@ -from random import randint -n = int(input()) -print(n) -print(' '.join([str(randint(1, 1000000)) for i in range(n)])) +version https://git-lfs.github.com/spec/v1 +oid sha256:1a5e770a6765b19a45d693f39dc1396bcd677a4103424466e5aef79236a6789a +size 115 diff --git a/LibreOJ/6/data/runner.c b/LibreOJ/6/data/runner.c index 25e99f13..ed95372a 100644 --- a/LibreOJ/6/data/runner.c +++ b/LibreOJ/6/data/runner.c @@ -1,31 +1,3 @@ -#include - -int main() { - int f1[2], f2[2]; - pipe(f1); - pipe(f2); - - if (!fork()) { - // Child - dup2(STDIN_FILENO, f1[0]); - dup2(STDOUT_FILENO, f2[1]); - char *cmd = "./test"; - char *argv[2]; - argv[0] = "./test"; - argv[1] = NULL; - - execvp(cmd, argv); - } - - if (!fork()) { - // Child - dup2(STDIN_FILENO, f2[0]); - dup2(STDOUT_FILENO, f1[1]); - char *cmd = "./iat"; - char *argv[2]; - argv[0] = "./iat"; - argv[1] = NULL; - - execvp(cmd, argv); - } -} +version https://git-lfs.github.com/spec/v1 +oid sha256:a739ac4913fd234a1bebaf32ebbb39e3ad638cc46c90562c74bca36ec4fb8652 +size 500 diff --git a/S2OJ/1/data/problem.conf b/S2OJ/1/data/problem.conf index 6f50c24b..1f8fcb05 100644 --- a/S2OJ/1/data/problem.conf +++ b/S2OJ/1/data/problem.conf @@ -1,11 +1,3 @@ -use_builtin_judger on -use_builtin_checker ncmp -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre plus -input_suf in -output_pre plus -output_suf out -time_limit 1 -memory_limit 256 +version https://git-lfs.github.com/spec/v1 +oid sha256:ec39c8e2b7b6e95a353faa1fa1506ebcb9503b6f1e0daed3141131617901a1bb +size 177 diff --git a/S2OJ/100/data/problem.conf b/S2OJ/100/data/problem.conf index 15b58100..e5f5b4df 100644 --- a/S2OJ/100/data/problem.conf +++ b/S2OJ/100/data/problem.conf @@ -1,12 +1,3 @@ -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre tree -input_suf in -output_pre tree -output_suf ans -time_limit 1 -memory_limit 512 -output_limit 64 -use_builtin_judger on -use_builtin_checker ncmp +version https://git-lfs.github.com/spec/v1 +oid sha256:92a2dd45e141e94977ba42fb5fa2795c878aef10ee10b0f9f23a6ea2987072da +size 193 diff --git a/S2OJ/1023/data/problem.conf b/S2OJ/1023/data/problem.conf index 50f716d8..a39aada8 100644 --- a/S2OJ/1023/data/problem.conf +++ b/S2OJ/1023/data/problem.conf @@ -1,11 +1,3 @@ -use_builtin_judger on -use_builtin_checker fcmp -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre data -input_suf in -output_pre data -output_suf out -time_limit 1 -memory_limit 128 +version https://git-lfs.github.com/spec/v1 +oid sha256:16c8474d800be5daf3cb0f74c8aa06133e1bf6d3bb8df5be994e363d2ab648b7 +size 177 diff --git a/S2OJ/1024/data/problem.conf b/S2OJ/1024/data/problem.conf index 000452df..4123f747 100644 --- a/S2OJ/1024/data/problem.conf +++ b/S2OJ/1024/data/problem.conf @@ -1,11 +1,3 @@ -use_builtin_judger on -use_builtin_checker fcmp -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre data -input_suf in -output_pre data -output_suf out -time_limit 1 -memory_limit 256 +version https://git-lfs.github.com/spec/v1 +oid sha256:ea854f4e7fc39bb22aeb2188ace2efdd3dee3e986edbcd7e2d0d7404b9941574 +size 177 diff --git a/S2OJ/1026/data/problem.conf b/S2OJ/1026/data/problem.conf index dc39f450..126b5305 100644 --- a/S2OJ/1026/data/problem.conf +++ b/S2OJ/1026/data/problem.conf @@ -1,11 +1,3 @@ -use_builtin_judger on -use_builtin_checker fcmp -n_tests 25 -n_ex_tests 0 -n_sample_tests 0 -input_pre data -input_suf in -output_pre data -output_suf out -time_limit 2 -memory_limit 256 +version https://git-lfs.github.com/spec/v1 +oid sha256:67ae9947425ea2a7ce71603a114e660a15bb77a563f6cb6f2b364106898a357b +size 177 diff --git a/S2OJ/103/data/problem.conf b/S2OJ/103/data/problem.conf index 953a304a..26c50b69 100644 --- a/S2OJ/103/data/problem.conf +++ b/S2OJ/103/data/problem.conf @@ -1,12 +1,3 @@ -n_tests 8 -n_ex_tests 0 -n_sample_tests 0 -input_pre flow -input_suf in -output_pre flow -output_suf ans -time_limit 1 -memory_limit 512 -output_limit 64 -use_builtin_judger on -use_builtin_checker ncmp +version https://git-lfs.github.com/spec/v1 +oid sha256:9b2d4e429d13fab08768a94b7d440274e1126275528d140e4da8663d91372179 +size 192 diff --git a/S2OJ/1033/data/problem.conf b/S2OJ/1033/data/problem.conf index 1e33e3f8..adb872f4 100644 --- a/S2OJ/1033/data/problem.conf +++ b/S2OJ/1033/data/problem.conf @@ -1,11 +1,3 @@ -use_builtin_judger on -use_builtin_checker ncmp -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre copycat -input_suf in -output_pre copycat -output_suf out -time_limit 1 -memory_limit 256 +version https://git-lfs.github.com/spec/v1 +oid sha256:536c65ae128995c142e1a307784e0ded095479aeae94ba79d4fab665397ec012 +size 183 diff --git a/S2OJ/1034/data/problem.conf b/S2OJ/1034/data/problem.conf index 57fd9f60..02131e7d 100644 --- a/S2OJ/1034/data/problem.conf +++ b/S2OJ/1034/data/problem.conf @@ -1,11 +1,3 @@ -use_builtin_judger on -use_builtin_checker ncmp -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre manage -input_suf in -output_pre manage -output_suf out -time_limit 2 -memory_limit 512 +version https://git-lfs.github.com/spec/v1 +oid sha256:e41b464b89cdc1ed8adfb2612206ab65a97f74f72f7924eb3a0435e11d092ba7 +size 181 diff --git a/S2OJ/1036/data/problem.conf b/S2OJ/1036/data/problem.conf index 50f716d8..a39aada8 100644 --- a/S2OJ/1036/data/problem.conf +++ b/S2OJ/1036/data/problem.conf @@ -1,11 +1,3 @@ -use_builtin_judger on -use_builtin_checker fcmp -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre data -input_suf in -output_pre data -output_suf out -time_limit 1 -memory_limit 128 +version https://git-lfs.github.com/spec/v1 +oid sha256:16c8474d800be5daf3cb0f74c8aa06133e1bf6d3bb8df5be994e363d2ab648b7 +size 177 diff --git a/S2OJ/104/data/problem.conf b/S2OJ/104/data/problem.conf index 7b5d6ff2..4ac68905 100644 --- a/S2OJ/104/data/problem.conf +++ b/S2OJ/104/data/problem.conf @@ -1,12 +1,3 @@ -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre mcmf -input_suf in -output_pre mcmf -output_suf ans -time_limit 4 -memory_limit 256 -output_limit 64 -use_builtin_judger on -use_builtin_checker ncmp +version https://git-lfs.github.com/spec/v1 +oid sha256:e44bd1da7932ed150e9a0b27aa037d6ac2ad76cde24002df49d80bdeda733492 +size 193 diff --git a/S2OJ/1052/data/problem.conf b/S2OJ/1052/data/problem.conf index 59586d52..47d9f675 100644 --- a/S2OJ/1052/data/problem.conf +++ b/S2OJ/1052/data/problem.conf @@ -1,12 +1,3 @@ -use_builtin_judger on -use_builtin_checker ncmp -n_tests 20 -n_ex_tests 0 -n_sample_tests 0 -input_pre qc -input_suf in -output_pre qc -output_suf ans -time_limit 1 -memory_limit 128 -output_limit 64 +version https://git-lfs.github.com/spec/v1 +oid sha256:499bb25ebd9033d522f9be258288ba936cf26fa804ed3066af17bba4e451d2f3 +size 189 diff --git a/S2OJ/106/data/problem.conf b/S2OJ/106/data/problem.conf index cc7d2cf0..84679e64 100644 --- a/S2OJ/106/data/problem.conf +++ b/S2OJ/106/data/problem.conf @@ -1,12 +1,3 @@ -n_tests 10 -n_ex_tests 2 -n_sample_tests 0 -input_pre graph -input_suf in -output_pre graph -output_suf ans -time_limit 1 -memory_limit 256 -output_limit 64 -use_builtin_judger on -use_builtin_checker ncmp +version https://git-lfs.github.com/spec/v1 +oid sha256:a55ec5c396a11537fe1ebba1e97cdea070cf051a78b7f6fd3885bb326077c253 +size 195 diff --git a/S2OJ/106/data/std b/S2OJ/106/data/std index 3f38cecb..7ed46079 100644 Binary files a/S2OJ/106/data/std and b/S2OJ/106/data/std differ diff --git a/S2OJ/106/data/val b/S2OJ/106/data/val index 5c375468..13c941e5 100644 Binary files a/S2OJ/106/data/val and b/S2OJ/106/data/val differ diff --git a/S2OJ/1061/data/problem.conf b/S2OJ/1061/data/problem.conf index 310bbf1a..f38b85b5 100644 --- a/S2OJ/1061/data/problem.conf +++ b/S2OJ/1061/data/problem.conf @@ -1,12 +1,3 @@ -n_tests 20 -n_ex_tests 0 -n_sample_tests 0 -input_pre data -input_suf in -output_pre data -output_suf out -time_limit 1 -memory_limit 1024 -output_limit 64 -use_builtin_judger on -use_builtin_checker fcmp +version https://git-lfs.github.com/spec/v1 +oid sha256:d3e3bc05c689f8cbfde5f3af6cd00a31d24bb0eb9f0d5b5a8ed5b05c0ccf11cb +size 194 diff --git a/S2OJ/109/data/problem.conf b/S2OJ/109/data/problem.conf index 717d66ef..800f94fc 100644 --- a/S2OJ/109/data/problem.conf +++ b/S2OJ/109/data/problem.conf @@ -1,11 +1,3 @@ -use_builtin_judger on -use_builtin_checker ncmp -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre tree -input_suf in -output_pre tree -output_suf out -time_limit 4 -memory_limit 512 +version https://git-lfs.github.com/spec/v1 +oid sha256:0344d590fdfab200f8850ecc879fa8f2f8565d1d4b4fea2fa7bb19432b7c2d01 +size 177 diff --git a/S2OJ/1094/data/problem.conf b/S2OJ/1094/data/problem.conf index d858fb6d..535f46c6 100644 --- a/S2OJ/1094/data/problem.conf +++ b/S2OJ/1094/data/problem.conf @@ -1,20 +1,3 @@ -n_tests 20 -n_ex_tests 0 -n_sample_tests 0 -input_pre range -input_suf in -output_pre range -output_suf ans -time_limit 1 -memory_limit 512 -output_limit 64 -use_builtin_judger on -n_subtasks 4 -subtask_end_1 4 -subtask_score_1 10 -subtask_end_2 10 -subtask_score_2 20 -subtask_end_3 13 -subtask_score_3 30 -subtask_end_4 20 -subtask_score_4 40 +version https://git-lfs.github.com/spec/v1 +oid sha256:ef09c95965fbb8ceb2c35778279a8acce6047c9f34f1d27abbd46bfe8b323007 +size 326 diff --git a/S2OJ/11/data/problem.conf b/S2OJ/11/data/problem.conf index 65aa4981..c3722fc7 100644 --- a/S2OJ/11/data/problem.conf +++ b/S2OJ/11/data/problem.conf @@ -1,12 +1,3 @@ -n_tests 10 -n_ex_tests 1 -n_sample_tests 1 -input_pre party -input_suf in -output_pre party -output_suf out -time_limit 1 -memory_limit 128 -output_limit 64 -use_builtin_judger on -use_builtin_checker ncmp +version https://git-lfs.github.com/spec/v1 +oid sha256:2f4c040b5029e65410b1573ec31fe798413c3e65fcb57290521ecff14be0c99e +size 195 diff --git a/S2OJ/1118/data/problem.conf b/S2OJ/1118/data/problem.conf index a8462e59..9603bdce 100644 --- a/S2OJ/1118/data/problem.conf +++ b/S2OJ/1118/data/problem.conf @@ -1,11 +1,3 @@ -use_builtin_judger on -use_builtin_checker ncmp -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre candy -input_suf in -output_pre candy -output_suf out -time_limit 1 -memory_limit 512 +version https://git-lfs.github.com/spec/v1 +oid sha256:18048cebf709fa01f2895e14ea5b93249b584b0851b3a9d1dbb220c22f8d06f8 +size 179 diff --git a/S2OJ/1122/data/problem.conf b/S2OJ/1122/data/problem.conf index e816e9d8..531b2677 100644 --- a/S2OJ/1122/data/problem.conf +++ b/S2OJ/1122/data/problem.conf @@ -1,11 +1,3 @@ -use_builtin_judger on -use_builtin_checker ncmp -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre airport -input_suf in -output_pre airport -output_suf ans -time_limit 1 -memory_limit 512 +version https://git-lfs.github.com/spec/v1 +oid sha256:8cb7c79b25c8e1ac391ae4001b22b7eab64889eb26e8cd5dcceadb0d09c8cee4 +size 183 diff --git a/S2OJ/1159/data/problem.conf b/S2OJ/1159/data/problem.conf index f3ee316e..77a96a4b 100644 --- a/S2OJ/1159/data/problem.conf +++ b/S2OJ/1159/data/problem.conf @@ -1,17 +1,3 @@ -n_tests 94 -n_ex_tests 0 -n_sample_tests 0 -input_pre vikings -input_suf in -output_pre vikings -output_suf ans -time_limit 1 -memory_limit 512 -output_limit 64 -use_builtin_judger on -use_builtin_checker wcmp -n_subtasks 2 -subtask_end_1 51 -subtask_score_1 50 -subtask_end_2 94 -subtask_score_2 50 +version https://git-lfs.github.com/spec/v1 +oid sha256:7d9b5d1b075fab6e82f67db216376ec9a388173d08e378673b8cd10815ad36e1 +size 284 diff --git a/S2OJ/1167/data/problem.conf b/S2OJ/1167/data/problem.conf index b3b28533..8e5b8bd0 100644 --- a/S2OJ/1167/data/problem.conf +++ b/S2OJ/1167/data/problem.conf @@ -1,15 +1,3 @@ -use_builtin_judger on -n_tests 5 -n_ex_tests 0 -n_sample_tests 0 -time_limit 1 -memory_limit 256 -input_pre data -input_suf in -output_pre data -output_suf out -has_input_pre true -has_output_pre true -with_implementer on -token 1145141919810efghkkk -poster awr +version https://git-lfs.github.com/spec/v1 +oid sha256:df1cac1746d7956808c5538c2e4fcc8dc907c72e03f3b58a4f448424ebcac841 +size 248 diff --git a/S2OJ/1167/data/require/head.h b/S2OJ/1167/data/require/head.h index 0c3646b1..ced3bcaf 100644 --- a/S2OJ/1167/data/require/head.h +++ b/S2OJ/1167/data/require/head.h @@ -1 +1,3 @@ -unsigned int solv(unsigned int, unsigned int); \ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:afe1affb0e1c7204435d1673a59f46450bbcb7bc56f80cd7a9b71f16349cc093 +size 46 diff --git a/S2OJ/1172/data/problem.conf b/S2OJ/1172/data/problem.conf index 50f716d8..a39aada8 100644 --- a/S2OJ/1172/data/problem.conf +++ b/S2OJ/1172/data/problem.conf @@ -1,11 +1,3 @@ -use_builtin_judger on -use_builtin_checker fcmp -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre data -input_suf in -output_pre data -output_suf out -time_limit 1 -memory_limit 128 +version https://git-lfs.github.com/spec/v1 +oid sha256:16c8474d800be5daf3cb0f74c8aa06133e1bf6d3bb8df5be994e363d2ab648b7 +size 177 diff --git a/S2OJ/1199/data/problem.conf b/S2OJ/1199/data/problem.conf index 50f716d8..a39aada8 100644 --- a/S2OJ/1199/data/problem.conf +++ b/S2OJ/1199/data/problem.conf @@ -1,11 +1,3 @@ -use_builtin_judger on -use_builtin_checker fcmp -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre data -input_suf in -output_pre data -output_suf out -time_limit 1 -memory_limit 128 +version https://git-lfs.github.com/spec/v1 +oid sha256:16c8474d800be5daf3cb0f74c8aa06133e1bf6d3bb8df5be994e363d2ab648b7 +size 177 diff --git a/S2OJ/12/data/problem.conf b/S2OJ/12/data/problem.conf index d700b11d..56a09f3d 100644 --- a/S2OJ/12/data/problem.conf +++ b/S2OJ/12/data/problem.conf @@ -1,12 +1,3 @@ -n_tests 10 -n_ex_tests 1 -n_sample_tests 1 -input_pre distribute -input_suf in -output_pre distribute -output_suf ans -time_limit 1 -memory_limit 256 -output_limit 64 -use_builtin_judger on -use_builtin_checker fcmp +version https://git-lfs.github.com/spec/v1 +oid sha256:b3ec8d848aa9cf6c180fd741434e73dc695119b9d6865a9bc79d686c1ba4d192 +size 205 diff --git a/S2OJ/1200/data/problem.conf b/S2OJ/1200/data/problem.conf index 8a139083..f0461b36 100644 --- a/S2OJ/1200/data/problem.conf +++ b/S2OJ/1200/data/problem.conf @@ -1,11 +1,3 @@ -use_builtin_judger on -use_builtin_checker fcmp -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre data -input_suf in -output_pre data -output_suf out -time_limit 2 -memory_limit 128 +version https://git-lfs.github.com/spec/v1 +oid sha256:45a1472f12631a9cd30e33bb119a9163972eeefa32911fd946fca1e408f4a529 +size 177 diff --git a/S2OJ/1224/data/problem.conf b/S2OJ/1224/data/problem.conf index ee986312..9f980b84 100644 --- a/S2OJ/1224/data/problem.conf +++ b/S2OJ/1224/data/problem.conf @@ -1,11 +1,3 @@ -use_builtin_judger on -use_builtin_checker ncmp -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre array -input_suf in -output_pre array -output_suf out -time_limit 1 -memory_limit 256 +version https://git-lfs.github.com/spec/v1 +oid sha256:d3b42f1711a1f274f2184053e74f57c4fbb94201b8a42ce08701708580573b3d +size 179 diff --git a/S2OJ/1230/data/problem.conf b/S2OJ/1230/data/problem.conf index 20086909..52d7056b 100644 --- a/S2OJ/1230/data/problem.conf +++ b/S2OJ/1230/data/problem.conf @@ -1,11 +1,3 @@ -use_builtin_judger on -use_builtin_checker fcmp -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre seq -input_suf in -output_pre seq -output_suf out -time_limit 1 -memory_limit 256 +version https://git-lfs.github.com/spec/v1 +oid sha256:3e85e36555eb35609645f4ecd37149bf1f3b80f22f1cdee5c865ac1be97dce8d +size 175 diff --git a/S2OJ/1238/data/problem.conf b/S2OJ/1238/data/problem.conf index 4fa746e5..c52d7249 100644 --- a/S2OJ/1238/data/problem.conf +++ b/S2OJ/1238/data/problem.conf @@ -1,11 +1,3 @@ -use_builtin_judger on -use_builtin_checker fcmp -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre simple -input_suf in -output_pre simple -output_suf out -time_limit 1 -memory_limit 256 +version https://git-lfs.github.com/spec/v1 +oid sha256:5a06ffee55ce5762c9b05aa52b7930eb358c0080b96a785c1a12afe67528e354 +size 181 diff --git a/S2OJ/1266/data/problem.conf b/S2OJ/1266/data/problem.conf index 6bd1834d..f15988f4 100644 --- a/S2OJ/1266/data/problem.conf +++ b/S2OJ/1266/data/problem.conf @@ -1,19 +1,3 @@ -n_tests 60 -n_ex_tests 0 -n_sample_tests 0 -input_pre t -input_suf in -output_pre t -output_suf ans -time_limit 1 -memory_limit 512 -output_limit 64 -use_builtin_judger on -use_builtin_checker ncmp -n_subtasks 3 -subtask_end_1 20 -subtask_score_1 25 -subtask_end_2 40 -subtask_score_2 25 -subtask_end_3 60 -subtask_score_3 50 +version https://git-lfs.github.com/spec/v1 +oid sha256:66e060680f7359f44cc43dba717613fb00317375a6b2ecda8e5670b8c3966da4 +size 308 diff --git a/S2OJ/128/data/problem.conf b/S2OJ/128/data/problem.conf index de6f4bef..9bb7a84c 100644 --- a/S2OJ/128/data/problem.conf +++ b/S2OJ/128/data/problem.conf @@ -1,12 +1,3 @@ -n_tests 15 -n_ex_tests 0 -n_sample_tests 0 -input_pre sequence -input_suf in -output_pre sequence -output_suf ans -time_limit 3 -memory_limit 512 -output_limit 64 -use_builtin_judger on -use_builtin_checker ncmp +version https://git-lfs.github.com/spec/v1 +oid sha256:ed42c8a843e55569ed9b4fac5fa3abb66a2d569ccde70332f1c03518357707d0 +size 201 diff --git a/S2OJ/130/data/problem.conf b/S2OJ/130/data/problem.conf index c5b13bda..86a88bc9 100644 --- a/S2OJ/130/data/problem.conf +++ b/S2OJ/130/data/problem.conf @@ -1,12 +1,3 @@ -n_tests 6 -n_ex_tests 0 -n_sample_tests 0 -input_pre lws -input_suf in -output_pre lws -output_suf ans -time_limit 5 -memory_limit 512 -output_limit 64 -use_builtin_judger on -use_builtin_checker ncmp +version https://git-lfs.github.com/spec/v1 +oid sha256:633791b40a15e26540e00564df2d3504f9212b6571dda9660e8ca8f5ec21cd65 +size 190 diff --git a/S2OJ/14/data/problem.conf b/S2OJ/14/data/problem.conf index cd73042c..408c6f3c 100644 --- a/S2OJ/14/data/problem.conf +++ b/S2OJ/14/data/problem.conf @@ -1,12 +1,3 @@ -n_tests 10 -n_ex_tests 1 -n_sample_tests 1 -input_pre editor -input_suf in -output_pre editor -output_suf ans -time_limit 1 -memory_limit 256 -output_limit 64 -use_builtin_judger on -use_builtin_checker lcmp +version https://git-lfs.github.com/spec/v1 +oid sha256:067bef657f503d9b3c67a738b8e00cd8564f8fdcb5c611cf420af06de66fed4b +size 197 diff --git a/S2OJ/1426/data/problem.conf b/S2OJ/1426/data/problem.conf index 5cdfc4f5..930f2371 100644 --- a/S2OJ/1426/data/problem.conf +++ b/S2OJ/1426/data/problem.conf @@ -1,11 +1,3 @@ -use_builtin_judger on -use_builtin_checker ncmp -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre ut -input_suf in -output_pre ut -output_suf out -time_limit 2 -memory_limit 256 +version https://git-lfs.github.com/spec/v1 +oid sha256:35631289ef15000b28cc6e1c41c36febf823ba848500505006c526aac95fbad5 +size 173 diff --git a/S2OJ/15/data/problem.conf b/S2OJ/15/data/problem.conf index a748b21e..2c8c8589 100644 --- a/S2OJ/15/data/problem.conf +++ b/S2OJ/15/data/problem.conf @@ -1,27 +1,3 @@ -n_tests 37 -n_ex_tests 4 -n_sample_tests 4 -n_subtasks 7 -subtask_end_1 2 -subtask_score_1 1 -subtask_end_2 4 -subtask_score_2 7 -subtask_end_3 10 -subtask_score_3 20 -subtask_end_4 13 -subtask_score_4 12 -subtask_end_5 26 -subtask_score_5 21 -subtask_end_6 33 -subtask_score_6 30 -subtask_end_7 37 -subtask_score_7 9 -input_pre union -input_suf in -output_pre union -output_suf ans -time_limit 1 -memory_limit 256 -output_limit 64 -use_builtin_judger on -use_builtin_checker ncmp +version https://git-lfs.github.com/spec/v1 +oid sha256:c65cb7b355fde16237e8721c77d5859704a41f7e31b8f6a0a38adfded1f248b2 +size 455 diff --git a/S2OJ/152/data/problem.conf b/S2OJ/152/data/problem.conf index 8fb1343f..d2fff1da 100644 --- a/S2OJ/152/data/problem.conf +++ b/S2OJ/152/data/problem.conf @@ -1,12 +1,3 @@ -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre mark -input_suf in -output_pre mark -output_suf ans -time_limit 1 -memory_limit 128 -output_limit 64 -use_builtin_judger on -use_builtin_checker ncmp +version https://git-lfs.github.com/spec/v1 +oid sha256:6335955457b63a2ab7d7ad37ad6a7ecab46143da6c5d56df8805e35e69e1736a +size 193 diff --git a/S2OJ/159/data/problem.conf b/S2OJ/159/data/problem.conf index d29e106d..e9df3ec6 100644 --- a/S2OJ/159/data/problem.conf +++ b/S2OJ/159/data/problem.conf @@ -1,12 +1,3 @@ -n_tests 8 -n_ex_tests 0 -n_sample_tests 0 -input_pre xor -input_suf in -output_pre xor -output_suf ans -time_limit 1 -memory_limit 256 -output_limit 64 -use_builtin_judger on -use_builtin_checker ncmp +version https://git-lfs.github.com/spec/v1 +oid sha256:3cb2103911354dddc6a980110dbde002991f38bd0d4c8777f11d3686f87aa6b3 +size 190 diff --git a/S2OJ/16/data/problem.conf b/S2OJ/16/data/problem.conf index 6facdfe1..95e6e998 100644 --- a/S2OJ/16/data/problem.conf +++ b/S2OJ/16/data/problem.conf @@ -1,12 +1,3 @@ -n_tests 20 -n_ex_tests 3 -n_sample_tests 3 -input_pre coin -input_suf in -output_pre coin -output_suf ans -time_limit 1 -memory_limit 512 -output_limit 64 -use_builtin_judger on -use_builtin_checker lcmp +version https://git-lfs.github.com/spec/v1 +oid sha256:dcdfb9aef046a871591420e777070d591b507d5f193b52259626fc72bbcec6c0 +size 193 diff --git a/S2OJ/164/data/problem.conf b/S2OJ/164/data/problem.conf index 7bb0b30e..34efae3d 100644 --- a/S2OJ/164/data/problem.conf +++ b/S2OJ/164/data/problem.conf @@ -1,12 +1,3 @@ -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre tree -input_suf in -output_pre tree -output_suf out -time_limit 2 -memory_limit 256 -output_limit 64 -use_builtin_judger on -use_builtin_checker ncmp +version https://git-lfs.github.com/spec/v1 +oid sha256:1fb79f3dd527ef3d2ce04180f669033d7c30f6d5e3356a2f9a8aa81936a2a2fa +size 193 diff --git a/S2OJ/165/data/problem.conf b/S2OJ/165/data/problem.conf index b0b2cb2a..822bd2cd 100644 --- a/S2OJ/165/data/problem.conf +++ b/S2OJ/165/data/problem.conf @@ -1,19 +1,3 @@ -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre str -input_suf in -output_pre str -output_suf ans -time_limit 1 -memory_limit 512 -output_limit 64 -use_builtin_judger on -use_builtin_checker ncmp -n_subtasks 3 -subtask_end_1 3 -subtask_score_1 30 -subtask_end_2 7 -subtask_score_2 40 -subtask_end_3 10 -subtask_score_3 30 +version https://git-lfs.github.com/spec/v1 +oid sha256:01b07115a511bdacc0b4f0ed4352f254b76e3840331fade6847832d0f8900694 +size 310 diff --git a/S2OJ/165/data/std b/S2OJ/165/data/std index 3143b067..8c3cf6b7 100644 Binary files a/S2OJ/165/data/std and b/S2OJ/165/data/std differ diff --git a/S2OJ/168/data/problem.conf b/S2OJ/168/data/problem.conf index 77533153..f82ff685 100644 --- a/S2OJ/168/data/problem.conf +++ b/S2OJ/168/data/problem.conf @@ -1,11 +1,3 @@ -use_builtin_judger on -use_builtin_checker wcmp -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre sieve -input_suf in -output_pre sieve -output_suf out -time_limit 2 -memory_limit 512 +version https://git-lfs.github.com/spec/v1 +oid sha256:f7b23861a5df2e44ea1a87eee455a404e4fe881073edd2369d41985804c4d772 +size 179 diff --git a/S2OJ/17/data/problem.conf b/S2OJ/17/data/problem.conf index 99d8f87b..77947bc9 100644 --- a/S2OJ/17/data/problem.conf +++ b/S2OJ/17/data/problem.conf @@ -1,12 +1,3 @@ -n_tests 10 -n_ex_tests 2 -n_sample_tests 2 -input_pre str -input_suf in -output_pre str -output_suf out -time_limit 1 -memory_limit 128 -output_limit 64 -use_builtin_judger on -use_builtin_checker fcmp +version https://git-lfs.github.com/spec/v1 +oid sha256:e10d739841f8d448fae837905a6c65d218340325f9a24391da7abfdf9b780227 +size 191 diff --git a/S2OJ/18/data/problem.conf b/S2OJ/18/data/problem.conf index 0870f28b..61ea932a 100644 --- a/S2OJ/18/data/problem.conf +++ b/S2OJ/18/data/problem.conf @@ -1,12 +1,3 @@ -n_tests 25 -n_ex_tests 3 -n_sample_tests 3 -input_pre tree -input_suf in -output_pre tree -output_suf out -time_limit 2 -memory_limit 512 -output_limit 64 -use_builtin_judger on -use_builtin_checker fcmp +version https://git-lfs.github.com/spec/v1 +oid sha256:bb1b6fed8667c52c34656ac503f914dd6e7b7a42abebff4372905c2af44b14c1 +size 193 diff --git a/S2OJ/181/data/problem.conf b/S2OJ/181/data/problem.conf index 42e4f2b4..52e83e47 100644 --- a/S2OJ/181/data/problem.conf +++ b/S2OJ/181/data/problem.conf @@ -1,12 +1,3 @@ -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre time -input_suf in -output_pre time -output_suf out -time_limit 1 -memory_limit 128 -output_limit 64 -use_builtin_judger on -use_builtin_checker ncmp +version https://git-lfs.github.com/spec/v1 +oid sha256:3317a694c7e0fd6c36fb3d8190ae55763e3dbb915fd95a761b5fbf61b79f2693 +size 193 diff --git a/S2OJ/183/data/problem.conf b/S2OJ/183/data/problem.conf index ead086e5..81f62037 100644 --- a/S2OJ/183/data/problem.conf +++ b/S2OJ/183/data/problem.conf @@ -1,12 +1,3 @@ -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre sigma -input_suf in -output_pre sigma -output_suf out -time_limit 1 -memory_limit 128 -output_limit 64 -use_builtin_judger on -use_builtin_checker ncmp +version https://git-lfs.github.com/spec/v1 +oid sha256:4cb7c85b792baeeb35bcd5cd0f6b3bd2e3258510f2d96252975721ce756ceaa7 +size 195 diff --git a/S2OJ/184/data/problem.conf b/S2OJ/184/data/problem.conf index 22892dfc..bae0da02 100644 --- a/S2OJ/184/data/problem.conf +++ b/S2OJ/184/data/problem.conf @@ -1,12 +1,3 @@ -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre germ -input_suf in -output_pre germ -output_suf out -time_limit 1 -memory_limit 64 -output_limit 64 -use_builtin_judger on -use_builtin_checker ncmp +version https://git-lfs.github.com/spec/v1 +oid sha256:5548c6ada13af04eda4203ba197be4a8e0ffe3b6f8edbc8b284c5a68cd2fd2fa +size 192 diff --git a/S2OJ/188/data/problem.conf b/S2OJ/188/data/problem.conf index 2740a138..e2884d9d 100644 --- a/S2OJ/188/data/problem.conf +++ b/S2OJ/188/data/problem.conf @@ -1,12 +1,3 @@ -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre matrix -input_suf in -output_pre matrix -output_suf out -time_limit 2 -memory_limit 256 -output_limit 64 -use_builtin_judger on -use_builtin_checker ncmp +version https://git-lfs.github.com/spec/v1 +oid sha256:89b02ea99992f2948366eb3c6b5f49fa658cbe64806133a58e4509a67c0b7095 +size 197 diff --git a/S2OJ/2/data/problem.conf b/S2OJ/2/data/problem.conf index 2ae49b58..f2d39828 100644 --- a/S2OJ/2/data/problem.conf +++ b/S2OJ/2/data/problem.conf @@ -1,23 +1,3 @@ -n_tests 28 -n_ex_tests 4 -n_sample_tests 4 -n_subtasks 5 -subtask_end_1 3 -subtask_score_1 3 -subtask_end_2 7 -subtask_score_2 37 -subtask_end_3 15 -subtask_score_3 21 -subtask_end_4 20 -subtask_score_4 19 -subtask_end_5 28 -subtask_score_5 20 -input_pre decode -input_suf in -output_pre decode -output_suf ans -time_limit 3 -memory_limit 256 -output_limit 64 -use_builtin_judger on -use_builtin_checker lcmp +version https://git-lfs.github.com/spec/v1 +oid sha256:db273c6a9cfb9ec47e36ce436583325c2e544c1a8b61980c50e5f46b81fe88c5 +size 387 diff --git a/S2OJ/217/data/problem.conf b/S2OJ/217/data/problem.conf index bf15cb11..68b1084d 100644 --- a/S2OJ/217/data/problem.conf +++ b/S2OJ/217/data/problem.conf @@ -1,12 +1,3 @@ -n_tests 20 -n_ex_tests 0 -n_sample_tests 0 -input_pre post -input_suf in -output_pre post -output_suf out -time_limit 2 -memory_limit 256 -output_limit 64 -use_builtin_judger on -use_builtin_checker ncmp +version https://git-lfs.github.com/spec/v1 +oid sha256:51550290499089461c0b8545c2b4357af383c932c6c24362ac5ba357982a352d +size 193 diff --git a/S2OJ/399/data/problem.conf b/S2OJ/399/data/problem.conf index 213f14aa..fa68ab9a 100644 --- a/S2OJ/399/data/problem.conf +++ b/S2OJ/399/data/problem.conf @@ -1,12 +1,3 @@ -n_tests 10 -n_ex_tests 1 -n_sample_tests 1 -input_pre acrobat -input_suf in -output_pre acrobat -output_suf out -time_limit 1 -memory_limit 128 -output_limit 64 -use_builtin_judger on -use_builtin_checker ncmp +version https://git-lfs.github.com/spec/v1 +oid sha256:de5ad43381513215958dd854abbdacd2861690dd6df295f918033b184aa4fa5f +size 199 diff --git a/S2OJ/400/data/problem.conf b/S2OJ/400/data/problem.conf index 6a7da392..12e2ff68 100644 --- a/S2OJ/400/data/problem.conf +++ b/S2OJ/400/data/problem.conf @@ -1,19 +1,3 @@ -n_tests 23 -n_subtasks 3 -n_ex_tests 1 -n_sample_tests 1 -subtask_end_1 5 -subtask_score_1 30 -subtask_end_2 8 -subtask_score_2 20 -subtask_end_3 23 -subtask_score_3 50 -input_pre house -input_suf in -output_pre house -output_suf out -time_limit 1 -memory_limit 128 -output_limit 64 -use_builtin_judger on -use_builtin_checker ncmp +version https://git-lfs.github.com/spec/v1 +oid sha256:0b9b65deadf7dc3ff739dc8c41c24d83043abe67d1b8252288d8600fa4b3f02c +size 314 diff --git a/S2OJ/421/data/problem.conf b/S2OJ/421/data/problem.conf index c27b7b8d..fbedd3f5 100644 --- a/S2OJ/421/data/problem.conf +++ b/S2OJ/421/data/problem.conf @@ -1,12 +1,3 @@ -n_tests 10 -n_ex_tests 1 -n_sample_tests 1 -input_pre sub -input_suf in -output_pre sub -output_suf out -time_limit 1 -memory_limit 128 -output_limit 64 -use_builtin_judger on -use_builtin_checker ncmp +version https://git-lfs.github.com/spec/v1 +oid sha256:ca08ddec01efdc3488e9ebeb4cf782acf237b532c0f7a2e3b5806ab41e516185 +size 191 diff --git a/S2OJ/438/data/problem.conf b/S2OJ/438/data/problem.conf index 2b0d88a4..6ec672a0 100644 --- a/S2OJ/438/data/problem.conf +++ b/S2OJ/438/data/problem.conf @@ -1,11 +1,3 @@ -use_builtin_judger on -use_builtin_checker wcmp -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre bamboo -input_suf in -output_pre bamboo -output_suf out -time_limit 1 -memory_limit 64 +version https://git-lfs.github.com/spec/v1 +oid sha256:4dc91401b24e7f957be5ab54d24ddb0c01a19eba8797e994275ba5ad985c1e04 +size 180 diff --git a/S2OJ/440/data/problem.conf b/S2OJ/440/data/problem.conf index fc49867c..b561b65c 100644 --- a/S2OJ/440/data/problem.conf +++ b/S2OJ/440/data/problem.conf @@ -1,11 +1,3 @@ -use_builtin_judger on -use_builtin_checker ncmp -n_tests 12 -n_ex_tests 0 -n_sample_tests 0 -input_pre rabbit -input_suf in -output_pre rabbit -output_suf out -time_limit 1 -memory_limit 64 +version https://git-lfs.github.com/spec/v1 +oid sha256:c5687a9496e9accdf03e0ab056fa44b079ceb1fad06a0459ef8c46f8d65aa7de +size 180 diff --git a/S2OJ/441/data/problem.conf b/S2OJ/441/data/problem.conf index e30550b5..30c22748 100644 --- a/S2OJ/441/data/problem.conf +++ b/S2OJ/441/data/problem.conf @@ -1,12 +1,3 @@ -use_builtin_judger on -use_builtin_checker ncmp -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre board -input_suf in -output_pre board -output_suf out -time_limit 1 -memory_limit 256 -output_limit 64 +version https://git-lfs.github.com/spec/v1 +oid sha256:bb30d65c4cc9678cc98bd89cf8c2e456d24512a8040b7ee4a2a96f74fbce88a4 +size 195 diff --git a/S2OJ/473/data/problem.conf b/S2OJ/473/data/problem.conf index 4195be4f..de09fa72 100644 --- a/S2OJ/473/data/problem.conf +++ b/S2OJ/473/data/problem.conf @@ -1,12 +1,3 @@ -n_tests 10 -n_ex_tests 1 -n_sample_tests 1 -input_pre a -input_suf in -output_pre a -output_suf out -time_limit 1 -memory_limit 256 -output_limit 64 -use_builtin_judger on -use_builtin_checker ncmp +version https://git-lfs.github.com/spec/v1 +oid sha256:57fb9614c66626b14ef01ca49d9c9cd9038973e23ff2bf0eed8f184128bc30e0 +size 187 diff --git a/S2OJ/475/data/problem.conf b/S2OJ/475/data/problem.conf index 93c1678f..f7e4ebbe 100644 --- a/S2OJ/475/data/problem.conf +++ b/S2OJ/475/data/problem.conf @@ -1,12 +1,3 @@ -n_tests 10 -n_ex_tests 1 -n_sample_tests 1 -input_pre a -input_suf in -output_pre a -output_suf out -time_limit 1 -memory_limit 128 -output_limit 64 -use_builtin_judger on -use_builtin_checker ncmp +version https://git-lfs.github.com/spec/v1 +oid sha256:23499f87850a8bac8da66c03af924c121b11d6c4bb4e1d0cc504bfab1c44d825 +size 187 diff --git a/S2OJ/480/data/problem.conf b/S2OJ/480/data/problem.conf index 40ef22a7..5427d60b 100644 --- a/S2OJ/480/data/problem.conf +++ b/S2OJ/480/data/problem.conf @@ -1,11 +1,3 @@ -use_builtin_judger on -use_builtin_checker ncmp -n_tests 10 -n_ex_tests 1 -n_sample_tests 1 -input_pre a -input_suf in -output_pre a -output_suf out -time_limit 1 -memory_limit 128 +version https://git-lfs.github.com/spec/v1 +oid sha256:a6e4c1bd3766603667c3275b1893f39da3fd2a87981a21d4479b941b411d276c +size 171 diff --git a/S2OJ/532/data/problem.conf b/S2OJ/532/data/problem.conf index c7c276a9..13e8c272 100644 --- a/S2OJ/532/data/problem.conf +++ b/S2OJ/532/data/problem.conf @@ -1,12 +1,3 @@ -use_builtin_judger on -use_builtin_checker fcmp -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre margin -input_suf in -output_pre margin -output_suf out -time_limit 1 -memory_limit 128 -output_limit 64 +version https://git-lfs.github.com/spec/v1 +oid sha256:4d9d3e2ac36804827290c96a5bd9506df989ffe3baf30588e2215176b491ab06 +size 197 diff --git a/S2OJ/533/data/problem.conf b/S2OJ/533/data/problem.conf index 22944600..a66e1f13 100644 --- a/S2OJ/533/data/problem.conf +++ b/S2OJ/533/data/problem.conf @@ -1,11 +1,3 @@ -use_builtin_judger on -use_builtin_checker wcmp -n_tests 20 -n_ex_tests 0 -n_sample_tests 0 -input_pre hunt -input_suf in -output_pre hunt -output_suf out -time_limit 1 -memory_limit 512 +version https://git-lfs.github.com/spec/v1 +oid sha256:a94be95fa9e883fd6d1b8d03d9cbcf8de2f9fccae4de8b12e48293815b01566b +size 177 diff --git a/S2OJ/553/data/problem.conf b/S2OJ/553/data/problem.conf index e9494a05..f5ad7cb9 100644 --- a/S2OJ/553/data/problem.conf +++ b/S2OJ/553/data/problem.conf @@ -1,12 +1,3 @@ -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre seq -input_suf in -output_pre seq -output_suf out -time_limit 1 -memory_limit 128 -output_limit 64 -use_builtin_judger on -use_builtin_checker fcmp +version https://git-lfs.github.com/spec/v1 +oid sha256:a019562b6480fc529e76af395cbb941bdb6d9b5d34c465031ed8f98de6264043 +size 191 diff --git a/S2OJ/593/data/problem.conf b/S2OJ/593/data/problem.conf index f0378929..d11d3bae 100644 --- a/S2OJ/593/data/problem.conf +++ b/S2OJ/593/data/problem.conf @@ -1,12 +1,3 @@ -n_tests 5 -n_ex_tests 0 -n_sample_tests 0 -input_pre huanghou -input_suf in -output_pre huanghou -output_suf out -time_limit 1 -memory_limit 512 -output_limit 64 -use_builtin_judger on -use_builtin_checker fcmp +version https://git-lfs.github.com/spec/v1 +oid sha256:bf828f5f4dd6fb38a310d09050d52585e98c431f8514ab4b52bf10457bc07403 +size 200 diff --git a/S2OJ/629/data/problem.conf b/S2OJ/629/data/problem.conf index b60b6783..d247e721 100644 --- a/S2OJ/629/data/problem.conf +++ b/S2OJ/629/data/problem.conf @@ -1,12 +1,3 @@ -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre dragons -input_suf in -output_pre dragons -output_suf out -time_limit 1 -memory_limit 128 -output_limit 64 -use_builtin_judger on -use_builtin_checker wcmp +version https://git-lfs.github.com/spec/v1 +oid sha256:61dcf78de4409f512ad07164608cb0ac8c2f419ce08e01a02a7194a7bb565ac7 +size 199 diff --git a/S2OJ/630/data/problem.conf b/S2OJ/630/data/problem.conf index f9c257fb..5847baed 100644 --- a/S2OJ/630/data/problem.conf +++ b/S2OJ/630/data/problem.conf @@ -1,12 +1,3 @@ -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre triangle -input_suf in -output_pre triangle -output_suf out -time_limit 1 -memory_limit 256 -output_limit 64 -use_builtin_judger on -use_builtin_checker wcmp +version https://git-lfs.github.com/spec/v1 +oid sha256:d380ca22fe780363cad0c65f6b4ffc97cad7b66956e301c9443d5bc2bcf97a9e +size 201 diff --git a/S2OJ/636/data/problem.conf b/S2OJ/636/data/problem.conf index 6ef11f45..96a98771 100644 --- a/S2OJ/636/data/problem.conf +++ b/S2OJ/636/data/problem.conf @@ -1,12 +1,3 @@ -n_tests 14 -n_ex_tests 0 -n_sample_tests 0 -input_pre shopping -input_suf in -output_pre shopping -output_suf out -time_limit 1 -memory_limit 512 -output_limit 64 -use_builtin_judger on -use_builtin_checker wcmp +version https://git-lfs.github.com/spec/v1 +oid sha256:831215a1e705489ea30f66b90bfb2f90bd01f07f4cf52c27124a6441c23ed009 +size 201 diff --git a/S2OJ/750/data/problem.conf b/S2OJ/750/data/problem.conf index 1e0ec802..2b0c2067 100644 --- a/S2OJ/750/data/problem.conf +++ b/S2OJ/750/data/problem.conf @@ -1,22 +1,3 @@ -use_builtin_judger on -use_builtin_checker ncmp -n_tests 17 -n_ex_tests 0 -n_sample_tests 0 -n_subtasks 5 -subtask_end_1 4 -subtask_end_2 7 -subtask_end_3 9 -subtask_end_4 13 -subtask_end_5 17 -subtask_score_1 22 -subtask_score_2 36 -subtask_score_3 8 -subtask_score_4 12 -subtask_score_5 22 -input_pre merchant -input_suf in -output_pre merchant -output_suf out -time_limit 1 -memory_limit 512 +version https://git-lfs.github.com/spec/v1 +oid sha256:8613a763bae20eac9b75d759f244ee5a93850696dcc7bcd237438c8d3fe89455 +size 374 diff --git a/S2OJ/779/data/problem.conf b/S2OJ/779/data/problem.conf index ee3ede74..a9383f12 100644 --- a/S2OJ/779/data/problem.conf +++ b/S2OJ/779/data/problem.conf @@ -1,11 +1,3 @@ -use_builtin_judger on -use_builtin_checker fcmp -n_tests 20 -n_ex_tests 0 -n_sample_tests 0 -input_pre range -input_suf in -output_pre range -output_suf ans -time_limit 2 -memory_limit 256 +version https://git-lfs.github.com/spec/v1 +oid sha256:1a7142875950fa882a4d551b384bab4969037cbd7242194ee8016962a0bb02d1 +size 179 diff --git a/S2OJ/782/data/problem.conf b/S2OJ/782/data/problem.conf index 9aad9bcc..9585cc26 100644 --- a/S2OJ/782/data/problem.conf +++ b/S2OJ/782/data/problem.conf @@ -1,13 +1,3 @@ -n_tests 20 -n_ex_tests 0 -n_sample_tests 0 -input_pre math -input_suf in -output_pre math -output_suf out -time_limit 1 -memory_limit 256 -output_limit 64 -use_builtin_judger on -use_builtin_checker wcmp -poster unnamed +version https://git-lfs.github.com/spec/v1 +oid sha256:86623a414aa7084d9c62da848baab3877464eaab89c737525794592ef506b5ea +size 208 diff --git a/S2OJ/784/data/problem.conf b/S2OJ/784/data/problem.conf index 39033ea0..1bd6807d 100644 --- a/S2OJ/784/data/problem.conf +++ b/S2OJ/784/data/problem.conf @@ -1,13 +1,3 @@ -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre shuru -input_suf in -output_pre shuru -output_suf out -time_limit 1 -memory_limit 256 -output_limit 64 -use_builtin_judger on -use_builtin_checker wcmp -poster unnamed +version https://git-lfs.github.com/spec/v1 +oid sha256:693eb36135a2b3115eb507174e50afc4d01d7b702738bc0a00179f182d1a224a +size 210 diff --git a/S2OJ/790/data/problem.conf b/S2OJ/790/data/problem.conf index 7e987b8e..6acec47d 100644 --- a/S2OJ/790/data/problem.conf +++ b/S2OJ/790/data/problem.conf @@ -1,12 +1,3 @@ -use_builtin_judger on -use_builtin_checker fcmp -n_tests 20 -n_ex_tests 0 -n_sample_tests 0 -input_pre wayhome -input_suf in -output_pre wayhome -output_suf out -time_limit 1 -memory_limit 256 -poster webnie +version https://git-lfs.github.com/spec/v1 +oid sha256:eadcb4e7f0474c85b7bd3475f0c05319cc072196ad085c472be4208ea1bfe815 +size 197 diff --git a/S2OJ/792/data/problem.conf b/S2OJ/792/data/problem.conf index 475122cb..2a2e923f 100644 --- a/S2OJ/792/data/problem.conf +++ b/S2OJ/792/data/problem.conf @@ -1,13 +1,3 @@ -use_builtin_judger on -use_builtin_checker ncmp -n_tests 19 -n_ex_tests 0 -n_sample_tests 0 -point_score_19 10 -input_pre hugclose -input_suf in -output_pre hugclose -output_suf out -time_limit 2 -memory_limit 256 -poster webnie +version https://git-lfs.github.com/spec/v1 +oid sha256:934a1150006df0cc42ffecad656400425b3a288c8cf9997e8eb7db6a9b1cc2df +size 217 diff --git a/S2OJ/796/data/problem.conf b/S2OJ/796/data/problem.conf index b4039b78..026312fa 100644 --- a/S2OJ/796/data/problem.conf +++ b/S2OJ/796/data/problem.conf @@ -1,12 +1,3 @@ -use_builtin_judger on -use_builtin_checker fcmp -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre minisum -input_suf in -output_pre minisum -output_suf out -time_limit 1 -memory_limit 128 -poster 这题被我入侵啦 +version https://git-lfs.github.com/spec/v1 +oid sha256:743722d5055b01d0a74e4ca5aa63e2b2026b8b40802f2a88995ab54ac5e7a514 +size 212 diff --git a/S2OJ/857/data/problem.conf b/S2OJ/857/data/problem.conf index 0263626d..c1583ae7 100644 --- a/S2OJ/857/data/problem.conf +++ b/S2OJ/857/data/problem.conf @@ -1,11 +1,3 @@ -use_builtin_judger on -use_builtin_checker wcmp -n_tests 20 -n_ex_tests 1 -n_sample_tests 1 -input_pre dis -input_suf in -output_pre dis -output_suf out -time_limit 1 -memory_limit 64 +version https://git-lfs.github.com/spec/v1 +oid sha256:8793f6bd738fd409f8406abf36787a7d1ce28c08ef42c0a89bb6dd459634fcf8 +size 174 diff --git a/S2OJ/864/data/problem.conf b/S2OJ/864/data/problem.conf index acc033e2..5fd8a5f4 100644 --- a/S2OJ/864/data/problem.conf +++ b/S2OJ/864/data/problem.conf @@ -1,11 +1,3 @@ -use_builtin_judger on -use_builtin_checker fcmp -n_tests 25 -n_ex_tests 0 -n_sample_tests 0 -input_pre data -input_suf in -output_pre data -output_suf out -time_limit 1 -memory_limit 256 +version https://git-lfs.github.com/spec/v1 +oid sha256:1b520d9455fbced13ee47609eafa38dc6517cae92d35557cebe7642bf5c0de4e +size 177 diff --git a/S2OJ/866/data/problem.conf b/S2OJ/866/data/problem.conf index ae705308..d036da06 100644 --- a/S2OJ/866/data/problem.conf +++ b/S2OJ/866/data/problem.conf @@ -1,24 +1,3 @@ -use_builtin_judger on -use_builtin_checker fcmp -n_tests 16 -n_ex_tests 0 -n_sample_tests 0 -n_subtasks 6 -subtask_end_1 1 -subtask_end_2 5 -subtask_end_3 9 -subtask_end_4 11 -subtask_end_5 13 -subtask_end_6 16 -subtask_score_1 1 -subtask_score_2 19 -subtask_score_3 27 -subtask_score_4 14 -subtask_score_5 17 -subtask_score_6 22 -input_pre u -input_suf in -output_pre u -output_suf ans -time_limit 1 -memory_limit 512 +version https://git-lfs.github.com/spec/v1 +oid sha256:bd349918ab4b1da6f5873222a8ff04f657c6339f4a9febbb9f0ccbd0dffb6c95 +size 396 diff --git a/S2OJ/90/data/problem.conf b/S2OJ/90/data/problem.conf index 54f678da..fcf24bfc 100644 --- a/S2OJ/90/data/problem.conf +++ b/S2OJ/90/data/problem.conf @@ -1,12 +1,3 @@ -n_tests 10 -n_ex_tests 1 -n_sample_tests 1 -input_pre div -input_suf in -output_pre div -output_suf out -time_limit 1 -memory_limit 128 -output_limit 64 -use_builtin_judger on -use_builtin_checker fcmp +version https://git-lfs.github.com/spec/v1 +oid sha256:1f930f50a7269c9036010ccf6478f9256a0ca2cf2360955445c839db6a09800a +size 191 diff --git a/S2OJ/907/data/problem.conf b/S2OJ/907/data/problem.conf index 7dc3efd6..a499a4f6 100644 --- a/S2OJ/907/data/problem.conf +++ b/S2OJ/907/data/problem.conf @@ -1,29 +1,3 @@ -n_tests 8 -n_ex_tests 0 -n_sample_tests 0 -input_pre a -input_suf in -output_pre a -output_suf out -time_limit 1 -memory_limit 512 -output_limit 64 -use_builtin_judger on -use_builtin_checker ncmp -n_subtasks 8 -subtask_end_1 1 -subtask_score_1 10 -subtask_end_2 2 -subtask_score_2 20 -subtask_end_3 3 -subtask_score_3 5 -subtask_end_4 4 -subtask_score_4 20 -subtask_end_5 5 -subtask_score_5 2 -subtask_end_6 6 -subtask_score_6 8 -subtask_end_7 7 -subtask_score_7 10 -subtask_end_8 8 -subtask_score_8 25 +version https://git-lfs.github.com/spec/v1 +oid sha256:679e7c6555892fa8fc1dd9de35190c31fb62efa505c5a8ceca1af2f88450a5e2 +size 476 diff --git a/S2OJ/99/data/problem.conf b/S2OJ/99/data/problem.conf index 3e530976..5131809a 100644 --- a/S2OJ/99/data/problem.conf +++ b/S2OJ/99/data/problem.conf @@ -1,12 +1,3 @@ -n_tests 10 -n_ex_tests 0 -n_sample_tests 0 -input_pre tree -input_suf in -output_pre tree -output_suf ans -time_limit 1 -memory_limit 256 -output_limit 64 -use_builtin_judger on -use_builtin_checker ncmp +version https://git-lfs.github.com/spec/v1 +oid sha256:81177b3583cc6905d4a9637b5237829596767010c49c8f433e457f3426e07fb1 +size 193