├── .gitignore ├── 1.png ├── LICENSE ├── checker.cpp ├── compile.cpp ├── compile.sh ├── generator.cpp ├── grader.cpp ├── judge.cpp ├── judge.sh ├── main.js ├── package.json └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | Cookie.txt 3 | node_modules 4 | *.exe 5 | 12543 6 | 13213 -------------------------------------------------------------------------------- /1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platelett/tc/HEAD/1.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platelett/tc/HEAD/LICENSE -------------------------------------------------------------------------------- /checker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platelett/tc/HEAD/checker.cpp -------------------------------------------------------------------------------- /compile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platelett/tc/HEAD/compile.cpp -------------------------------------------------------------------------------- /compile.sh: -------------------------------------------------------------------------------- 1 | g++ grader.cpp -o foo -Wall -O2 -std=c++17 -lm -fdiagnostics-color=always -DONLINE_JUDGE 2 | -------------------------------------------------------------------------------- /generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platelett/tc/HEAD/generator.cpp -------------------------------------------------------------------------------- /grader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platelett/tc/HEAD/grader.cpp -------------------------------------------------------------------------------- /judge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platelett/tc/HEAD/judge.cpp -------------------------------------------------------------------------------- /judge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platelett/tc/HEAD/judge.sh -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platelett/tc/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platelett/tc/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platelett/tc/HEAD/readme.md --------------------------------------------------------------------------------