├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github └── workflows │ └── test.yml ├── .gitignore ├── .prettierrc.json ├── .vscode ├── launch.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── doc └── languages.md ├── images ├── compile-dark.svg ├── compile-light.svg ├── getting-started.gif ├── logo.png ├── run-dark.svg ├── run-light.svg ├── stress-dark.svg ├── stress-light.svg ├── submit-dark.svg ├── submit-light.svg ├── upgrade-dark.svg └── upgrade-light.svg ├── jest.config.js ├── package.json ├── src ├── companion.ts ├── conn.ts ├── core.ts ├── errors.ts ├── extension.ts ├── primitives.ts ├── runner.ts ├── tcgen.ts ├── terminal.ts ├── test │ ├── runTest.ts │ ├── suite │ │ ├── extension.test.ts │ │ └── index.ts │ └── testUtils.ts ├── utils.ts └── webview │ ├── JudgeView.ts │ ├── core.ts │ ├── editorChange.ts │ ├── frontend │ ├── App.tsx │ ├── CaseView.tsx │ ├── app.css │ └── index.html │ ├── processRunAll.ts │ ├── processRunSingle.ts │ └── types.ts ├── static ├── checkers │ ├── acmp.cpp │ ├── caseicmp.cpp │ ├── casencmp.cpp │ ├── casewcmp.cpp │ ├── dcmp.cpp │ ├── fcmp.cpp │ ├── hcmp.cpp │ ├── icmp.cpp │ ├── lcmp.cpp │ ├── ncmp.cpp │ ├── pointscmp.cpp │ ├── rcmp.cpp │ ├── rcmp4.cpp │ ├── rcmp6.cpp │ ├── rcmp9.cpp │ ├── rncmp.cpp │ ├── testlib.h │ ├── uncmp.cpp │ ├── wcmp.cpp │ └── yesno.cpp ├── languages │ ├── cpp.json │ └── python.json ├── panel-view-icon.svg ├── templates │ ├── brute.cpp │ ├── checker.cpp │ ├── gen.py │ └── sol.cpp └── testData │ └── exampleContest │ ├── A │ ├── sol.cpp │ └── testcases │ │ ├── 0.ans │ │ ├── 0.in │ │ ├── 0.out │ │ ├── 1.ans │ │ ├── 1.in │ │ ├── 1.out │ │ ├── 2.ans │ │ ├── 2.in │ │ └── 2.out │ ├── B │ ├── sol.cpp │ └── testcases │ │ ├── 0.ans │ │ ├── 0.in │ │ ├── 0.out │ │ ├── 1.ans │ │ ├── 1.in │ │ ├── 2.ans │ │ └── 2.in │ ├── C │ ├── sol.cpp │ └── testcases │ │ ├── 0.ans │ │ ├── 0.in │ │ ├── 1.ans │ │ ├── 1.in │ │ ├── 2.ans │ │ └── 2.in │ ├── D │ ├── sol.cpp │ └── testcases │ │ ├── 0.ans │ │ ├── 0.in │ │ ├── 1.ans │ │ ├── 1.in │ │ ├── 2.ans │ │ └── 2.in │ └── E │ ├── sol.cpp │ └── testcases │ ├── 0.ans │ ├── 0.in │ ├── 1.ans │ ├── 1.in │ ├── 2.ans │ └── 2.in ├── tsconfig.json ├── types ├── jssoup.d.ts └── unescape.d.ts ├── vendor.yml ├── webpack.config.js └── webpack.frontend.config.js /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/README.md -------------------------------------------------------------------------------- /doc/languages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/doc/languages.md -------------------------------------------------------------------------------- /images/compile-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/images/compile-dark.svg -------------------------------------------------------------------------------- /images/compile-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/images/compile-light.svg -------------------------------------------------------------------------------- /images/getting-started.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/images/getting-started.gif -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/run-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/images/run-dark.svg -------------------------------------------------------------------------------- /images/run-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/images/run-light.svg -------------------------------------------------------------------------------- /images/stress-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/images/stress-dark.svg -------------------------------------------------------------------------------- /images/stress-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/images/stress-light.svg -------------------------------------------------------------------------------- /images/submit-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/images/submit-dark.svg -------------------------------------------------------------------------------- /images/submit-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/images/submit-light.svg -------------------------------------------------------------------------------- /images/upgrade-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/images/upgrade-dark.svg -------------------------------------------------------------------------------- /images/upgrade-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/images/upgrade-light.svg -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | verbose: true, 3 | }; 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/package.json -------------------------------------------------------------------------------- /src/companion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/src/companion.ts -------------------------------------------------------------------------------- /src/conn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/src/conn.ts -------------------------------------------------------------------------------- /src/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/src/core.ts -------------------------------------------------------------------------------- /src/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/src/errors.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/primitives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/src/primitives.ts -------------------------------------------------------------------------------- /src/runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/src/runner.ts -------------------------------------------------------------------------------- /src/tcgen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/src/tcgen.ts -------------------------------------------------------------------------------- /src/terminal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/src/terminal.ts -------------------------------------------------------------------------------- /src/test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/src/test/runTest.ts -------------------------------------------------------------------------------- /src/test/suite/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/src/test/suite/extension.test.ts -------------------------------------------------------------------------------- /src/test/suite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/src/test/suite/index.ts -------------------------------------------------------------------------------- /src/test/testUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/src/test/testUtils.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/webview/JudgeView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/src/webview/JudgeView.ts -------------------------------------------------------------------------------- /src/webview/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/src/webview/core.ts -------------------------------------------------------------------------------- /src/webview/editorChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/src/webview/editorChange.ts -------------------------------------------------------------------------------- /src/webview/frontend/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/src/webview/frontend/App.tsx -------------------------------------------------------------------------------- /src/webview/frontend/CaseView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/src/webview/frontend/CaseView.tsx -------------------------------------------------------------------------------- /src/webview/frontend/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/src/webview/frontend/app.css -------------------------------------------------------------------------------- /src/webview/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/src/webview/frontend/index.html -------------------------------------------------------------------------------- /src/webview/processRunAll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/src/webview/processRunAll.ts -------------------------------------------------------------------------------- /src/webview/processRunSingle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/src/webview/processRunSingle.ts -------------------------------------------------------------------------------- /src/webview/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/src/webview/types.ts -------------------------------------------------------------------------------- /static/checkers/acmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/static/checkers/acmp.cpp -------------------------------------------------------------------------------- /static/checkers/caseicmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/static/checkers/caseicmp.cpp -------------------------------------------------------------------------------- /static/checkers/casencmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/static/checkers/casencmp.cpp -------------------------------------------------------------------------------- /static/checkers/casewcmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/static/checkers/casewcmp.cpp -------------------------------------------------------------------------------- /static/checkers/dcmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/static/checkers/dcmp.cpp -------------------------------------------------------------------------------- /static/checkers/fcmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/static/checkers/fcmp.cpp -------------------------------------------------------------------------------- /static/checkers/hcmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/static/checkers/hcmp.cpp -------------------------------------------------------------------------------- /static/checkers/icmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/static/checkers/icmp.cpp -------------------------------------------------------------------------------- /static/checkers/lcmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/static/checkers/lcmp.cpp -------------------------------------------------------------------------------- /static/checkers/ncmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/static/checkers/ncmp.cpp -------------------------------------------------------------------------------- /static/checkers/pointscmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/static/checkers/pointscmp.cpp -------------------------------------------------------------------------------- /static/checkers/rcmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/static/checkers/rcmp.cpp -------------------------------------------------------------------------------- /static/checkers/rcmp4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/static/checkers/rcmp4.cpp -------------------------------------------------------------------------------- /static/checkers/rcmp6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/static/checkers/rcmp6.cpp -------------------------------------------------------------------------------- /static/checkers/rcmp9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/static/checkers/rcmp9.cpp -------------------------------------------------------------------------------- /static/checkers/rncmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/static/checkers/rncmp.cpp -------------------------------------------------------------------------------- /static/checkers/testlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/static/checkers/testlib.h -------------------------------------------------------------------------------- /static/checkers/uncmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/static/checkers/uncmp.cpp -------------------------------------------------------------------------------- /static/checkers/wcmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/static/checkers/wcmp.cpp -------------------------------------------------------------------------------- /static/checkers/yesno.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/static/checkers/yesno.cpp -------------------------------------------------------------------------------- /static/languages/cpp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/static/languages/cpp.json -------------------------------------------------------------------------------- /static/languages/python.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/static/languages/python.json -------------------------------------------------------------------------------- /static/panel-view-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/static/panel-view-icon.svg -------------------------------------------------------------------------------- /static/templates/brute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/static/templates/brute.cpp -------------------------------------------------------------------------------- /static/templates/checker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/static/templates/checker.cpp -------------------------------------------------------------------------------- /static/templates/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/static/templates/gen.py -------------------------------------------------------------------------------- /static/templates/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/static/templates/sol.cpp -------------------------------------------------------------------------------- /static/testData/exampleContest/A/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/static/testData/exampleContest/A/sol.cpp -------------------------------------------------------------------------------- /static/testData/exampleContest/A/testcases/0.ans: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /static/testData/exampleContest/A/testcases/0.in: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /static/testData/exampleContest/A/testcases/0.out: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /static/testData/exampleContest/A/testcases/1.ans: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /static/testData/exampleContest/A/testcases/1.in: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /static/testData/exampleContest/A/testcases/1.out: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /static/testData/exampleContest/A/testcases/2.ans: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /static/testData/exampleContest/A/testcases/2.in: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /static/testData/exampleContest/A/testcases/2.out: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /static/testData/exampleContest/B/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/static/testData/exampleContest/B/sol.cpp -------------------------------------------------------------------------------- /static/testData/exampleContest/B/testcases/0.ans: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /static/testData/exampleContest/B/testcases/0.in: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /static/testData/exampleContest/B/testcases/0.out: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /static/testData/exampleContest/B/testcases/1.ans: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /static/testData/exampleContest/B/testcases/1.in: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /static/testData/exampleContest/B/testcases/2.ans: -------------------------------------------------------------------------------- 1 | 13 2 | -------------------------------------------------------------------------------- /static/testData/exampleContest/B/testcases/2.in: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /static/testData/exampleContest/C/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/static/testData/exampleContest/C/sol.cpp -------------------------------------------------------------------------------- /static/testData/exampleContest/C/testcases/0.ans: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /static/testData/exampleContest/C/testcases/0.in: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /static/testData/exampleContest/C/testcases/1.ans: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /static/testData/exampleContest/C/testcases/1.in: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /static/testData/exampleContest/C/testcases/2.ans: -------------------------------------------------------------------------------- 1 | 14 2 | -------------------------------------------------------------------------------- /static/testData/exampleContest/C/testcases/2.in: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /static/testData/exampleContest/D/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/static/testData/exampleContest/D/sol.cpp -------------------------------------------------------------------------------- /static/testData/exampleContest/D/testcases/0.ans: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /static/testData/exampleContest/D/testcases/0.in: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /static/testData/exampleContest/D/testcases/1.ans: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /static/testData/exampleContest/D/testcases/1.in: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /static/testData/exampleContest/D/testcases/2.ans: -------------------------------------------------------------------------------- 1 | 15 2 | -------------------------------------------------------------------------------- /static/testData/exampleContest/D/testcases/2.in: -------------------------------------------------------------------------------- 1 | 13 2 | -------------------------------------------------------------------------------- /static/testData/exampleContest/E/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/static/testData/exampleContest/E/sol.cpp -------------------------------------------------------------------------------- /static/testData/exampleContest/E/testcases/0.ans: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /static/testData/exampleContest/E/testcases/0.in: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /static/testData/exampleContest/E/testcases/1.ans: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /static/testData/exampleContest/E/testcases/1.in: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /static/testData/exampleContest/E/testcases/2.ans: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /static/testData/exampleContest/E/testcases/2.in: -------------------------------------------------------------------------------- 1 | 14 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/jssoup.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/types/jssoup.d.ts -------------------------------------------------------------------------------- /types/unescape.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/types/unescape.d.ts -------------------------------------------------------------------------------- /vendor.yml: -------------------------------------------------------------------------------- 1 | - static/ 2 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.frontend.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfornet/acmx/HEAD/webpack.frontend.config.js --------------------------------------------------------------------------------