├── .github └── workflows │ ├── format.yml │ ├── pypi.yml │ ├── test.yml │ └── verify.yml ├── .gitignore ├── .verify-helper ├── config.toml ├── docs │ ├── _config.yml │ ├── index.md │ └── static │ │ ├── document.ja.md │ │ ├── document.md │ │ ├── installer.en.html │ │ ├── installer.ja.md │ │ ├── installer.js │ │ └── installer.md └── timestamps.remote.json ├── CONTRIBUTING.md ├── DESIGN.md ├── Examples2 └── Haskell │ ├── HelloWorld.hs │ └── HelloWorld.test.hs ├── LICENSE ├── README.ja.md ├── README.md ├── example.test.cpp ├── examples ├── awk │ ├── circle.awk │ └── circle.test.awk ├── csharpscript │ ├── helloworld.csx │ ├── helloworld.test.csx │ ├── segment_tree.csx │ ├── segment_tree.point_set_range_composite.test.csx │ ├── segment_tree.range_minimum_query.test.csx │ └── segment_tree.range_sum_query.test.csx ├── debug │ ├── a │ │ └── b │ │ │ └── c │ │ │ └── foo.hpp │ ├── d │ │ └── e │ │ │ └── f │ │ │ └── g │ │ │ └── foo.hpp │ ├── failed_to_bundle.hpp │ ├── gcc_only.test.cpp │ ├── h │ │ └── i │ │ │ └── j │ │ │ └── k │ │ │ └── l │ │ │ └── foo.hpp │ ├── include_relative.test.cpp │ ├── not_verified.hpp │ ├── precision.test.cpp │ ├── relative_path.hpp │ ├── relative_path.test.cpp │ └── yukicoder.test.cpp ├── go │ ├── go.mod │ ├── helloworld.go │ ├── helloworld.test.go │ └── helloworld │ │ └── helloworld.go ├── java │ ├── HelloWorld.java │ └── HelloWorld_test.java ├── macros.hpp ├── monoids.hpp ├── nim │ ├── headers.nim │ ├── hoge.nim │ ├── union_find_tree.nim │ ├── union_find_tree_aoj_test.nim │ └── union_find_tree_yosupo_test.nim ├── python │ ├── hello_world.py │ ├── hello_world.test.py │ ├── union_find.py │ ├── union_find_aoj.test.py │ └── union_find_yosupo.test.py ├── ruby │ ├── hello_world.rb │ └── hello_world.test.rb ├── rust │ ├── .gitignore │ ├── Cargo.toml │ ├── crates │ │ ├── helloworld │ │ │ ├── hello │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── world │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ └── io │ │ │ ├── input │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ │ └── scanner │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ └── lib.rs │ ├── rust-toolchain │ ├── src │ │ └── lib.rs │ └── verification │ │ ├── Cargo.toml │ │ └── src │ │ └── bin │ │ ├── aizu-online-judge-itp1-1-a.rs │ │ └── library-checker-aplusb.rs ├── segment_tree.hpp ├── segment_tree.md ├── segment_tree.point_set_range_composite.test.cpp ├── segment_tree.range_minimum_query.test.cpp ├── segment_tree.range_sum_query.test.cpp ├── union_find_tree.aoj.test.cpp ├── union_find_tree.hpp └── union_find_tree.yosupo.test.cpp ├── onlinejudge_bundle ├── __init__.py └── main.py ├── onlinejudge_verify ├── __init__.py ├── config.py ├── documentation │ ├── __init__.py │ ├── build.py │ ├── configure.py │ ├── front_matter.py │ ├── main.py │ └── type.py ├── languages │ ├── __init__.py │ ├── cplusplus.py │ ├── cplusplus_bundle.py │ ├── csharpscript.py │ ├── go.py │ ├── haskell.py │ ├── java.py │ ├── list.py │ ├── models.py │ ├── nim.py │ ├── python.py │ ├── ruby.py │ ├── rust.py │ ├── special_comments.py │ └── user_defined.py ├── main.py ├── marker.py ├── utils.py └── verify.py ├── onlinejudge_verify_resources ├── Gemfile ├── __init__.py ├── _config.yml ├── _includes │ ├── __init__.py │ ├── document_body.html │ ├── document_footer.html │ ├── document_header.html │ ├── highlight.html │ ├── mathjax.html │ ├── theme_fix.html │ ├── toppage_body.html │ └── toppage_header.html ├── _layouts │ ├── __init__.py │ ├── document.html │ ├── page.html │ └── toppage.html └── assets │ ├── css │ └── copy-button.css │ ├── js │ └── copy-button.js │ └── site-header.txt ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── test_bundle.py ├── test_cplusplus.py ├── test_docs.py ├── test_python.py ├── test_rust.py ├── test_special_comments.py ├── test_stats.py ├── test_verify.py └── utils.py /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/.github/workflows/pypi.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/.github/workflows/verify.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/.gitignore -------------------------------------------------------------------------------- /.verify-helper/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/.verify-helper/config.toml -------------------------------------------------------------------------------- /.verify-helper/docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/.verify-helper/docs/_config.yml -------------------------------------------------------------------------------- /.verify-helper/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/.verify-helper/docs/index.md -------------------------------------------------------------------------------- /.verify-helper/docs/static/document.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/.verify-helper/docs/static/document.ja.md -------------------------------------------------------------------------------- /.verify-helper/docs/static/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/.verify-helper/docs/static/document.md -------------------------------------------------------------------------------- /.verify-helper/docs/static/installer.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/.verify-helper/docs/static/installer.en.html -------------------------------------------------------------------------------- /.verify-helper/docs/static/installer.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/.verify-helper/docs/static/installer.ja.md -------------------------------------------------------------------------------- /.verify-helper/docs/static/installer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/.verify-helper/docs/static/installer.js -------------------------------------------------------------------------------- /.verify-helper/docs/static/installer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/.verify-helper/docs/static/installer.md -------------------------------------------------------------------------------- /.verify-helper/timestamps.remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/.verify-helper/timestamps.remote.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/DESIGN.md -------------------------------------------------------------------------------- /Examples2/Haskell/HelloWorld.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/Examples2/Haskell/HelloWorld.hs -------------------------------------------------------------------------------- /Examples2/Haskell/HelloWorld.test.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/Examples2/Haskell/HelloWorld.test.hs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/README.ja.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/README.md -------------------------------------------------------------------------------- /example.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/example.test.cpp -------------------------------------------------------------------------------- /examples/awk/circle.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/awk/circle.awk -------------------------------------------------------------------------------- /examples/awk/circle.test.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/awk/circle.test.awk -------------------------------------------------------------------------------- /examples/csharpscript/helloworld.csx: -------------------------------------------------------------------------------- 1 | Console.WriteLine("Hello World"); -------------------------------------------------------------------------------- /examples/csharpscript/helloworld.test.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/csharpscript/helloworld.test.csx -------------------------------------------------------------------------------- /examples/csharpscript/segment_tree.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/csharpscript/segment_tree.csx -------------------------------------------------------------------------------- /examples/csharpscript/segment_tree.point_set_range_composite.test.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/csharpscript/segment_tree.point_set_range_composite.test.csx -------------------------------------------------------------------------------- /examples/csharpscript/segment_tree.range_minimum_query.test.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/csharpscript/segment_tree.range_minimum_query.test.csx -------------------------------------------------------------------------------- /examples/csharpscript/segment_tree.range_sum_query.test.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/csharpscript/segment_tree.range_sum_query.test.csx -------------------------------------------------------------------------------- /examples/debug/a/b/c/foo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/debug/a/b/c/foo.hpp -------------------------------------------------------------------------------- /examples/debug/d/e/f/g/foo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/debug/d/e/f/g/foo.hpp -------------------------------------------------------------------------------- /examples/debug/failed_to_bundle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/debug/failed_to_bundle.hpp -------------------------------------------------------------------------------- /examples/debug/gcc_only.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/debug/gcc_only.test.cpp -------------------------------------------------------------------------------- /examples/debug/h/i/j/k/l/foo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/debug/h/i/j/k/l/foo.hpp -------------------------------------------------------------------------------- /examples/debug/include_relative.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/debug/include_relative.test.cpp -------------------------------------------------------------------------------- /examples/debug/not_verified.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/debug/not_verified.hpp -------------------------------------------------------------------------------- /examples/debug/precision.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/debug/precision.test.cpp -------------------------------------------------------------------------------- /examples/debug/relative_path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/debug/relative_path.hpp -------------------------------------------------------------------------------- /examples/debug/relative_path.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/debug/relative_path.test.cpp -------------------------------------------------------------------------------- /examples/debug/yukicoder.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/debug/yukicoder.test.cpp -------------------------------------------------------------------------------- /examples/go/go.mod: -------------------------------------------------------------------------------- 1 | module example-go 2 | 3 | go 1.20 4 | -------------------------------------------------------------------------------- /examples/go/helloworld.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/go/helloworld.go -------------------------------------------------------------------------------- /examples/go/helloworld.test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/go/helloworld.test.go -------------------------------------------------------------------------------- /examples/go/helloworld/helloworld.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/go/helloworld/helloworld.go -------------------------------------------------------------------------------- /examples/java/HelloWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/java/HelloWorld.java -------------------------------------------------------------------------------- /examples/java/HelloWorld_test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/java/HelloWorld_test.java -------------------------------------------------------------------------------- /examples/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/macros.hpp -------------------------------------------------------------------------------- /examples/monoids.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/monoids.hpp -------------------------------------------------------------------------------- /examples/nim/headers.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/nim/headers.nim -------------------------------------------------------------------------------- /examples/nim/hoge.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/nim/hoge.nim -------------------------------------------------------------------------------- /examples/nim/union_find_tree.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/nim/union_find_tree.nim -------------------------------------------------------------------------------- /examples/nim/union_find_tree_aoj_test.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/nim/union_find_tree_aoj_test.nim -------------------------------------------------------------------------------- /examples/nim/union_find_tree_yosupo_test.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/nim/union_find_tree_yosupo_test.nim -------------------------------------------------------------------------------- /examples/python/hello_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/python/hello_world.py -------------------------------------------------------------------------------- /examples/python/hello_world.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/python/hello_world.test.py -------------------------------------------------------------------------------- /examples/python/union_find.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/python/union_find.py -------------------------------------------------------------------------------- /examples/python/union_find_aoj.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/python/union_find_aoj.test.py -------------------------------------------------------------------------------- /examples/python/union_find_yosupo.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/python/union_find_yosupo.test.py -------------------------------------------------------------------------------- /examples/ruby/hello_world.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/ruby/hello_world.rb -------------------------------------------------------------------------------- /examples/ruby/hello_world.test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/ruby/hello_world.test.rb -------------------------------------------------------------------------------- /examples/rust/.gitignore: -------------------------------------------------------------------------------- 1 | /Cargo.lock 2 | /target/ 3 | -------------------------------------------------------------------------------- /examples/rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/rust/Cargo.toml -------------------------------------------------------------------------------- /examples/rust/crates/helloworld/hello/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/rust/crates/helloworld/hello/Cargo.toml -------------------------------------------------------------------------------- /examples/rust/crates/helloworld/hello/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/rust/crates/helloworld/hello/src/lib.rs -------------------------------------------------------------------------------- /examples/rust/crates/helloworld/world/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/rust/crates/helloworld/world/Cargo.toml -------------------------------------------------------------------------------- /examples/rust/crates/helloworld/world/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/rust/crates/helloworld/world/src/lib.rs -------------------------------------------------------------------------------- /examples/rust/crates/io/input/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/rust/crates/io/input/Cargo.toml -------------------------------------------------------------------------------- /examples/rust/crates/io/input/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/rust/crates/io/input/src/lib.rs -------------------------------------------------------------------------------- /examples/rust/crates/io/scanner/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/rust/crates/io/scanner/Cargo.toml -------------------------------------------------------------------------------- /examples/rust/crates/io/scanner/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/rust/crates/io/scanner/src/lib.rs -------------------------------------------------------------------------------- /examples/rust/rust-toolchain: -------------------------------------------------------------------------------- 1 | 1.70.0 2 | -------------------------------------------------------------------------------- /examples/rust/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/rust/src/lib.rs -------------------------------------------------------------------------------- /examples/rust/verification/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/rust/verification/Cargo.toml -------------------------------------------------------------------------------- /examples/rust/verification/src/bin/aizu-online-judge-itp1-1-a.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/rust/verification/src/bin/aizu-online-judge-itp1-1-a.rs -------------------------------------------------------------------------------- /examples/rust/verification/src/bin/library-checker-aplusb.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/rust/verification/src/bin/library-checker-aplusb.rs -------------------------------------------------------------------------------- /examples/segment_tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/segment_tree.hpp -------------------------------------------------------------------------------- /examples/segment_tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/segment_tree.md -------------------------------------------------------------------------------- /examples/segment_tree.point_set_range_composite.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/segment_tree.point_set_range_composite.test.cpp -------------------------------------------------------------------------------- /examples/segment_tree.range_minimum_query.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/segment_tree.range_minimum_query.test.cpp -------------------------------------------------------------------------------- /examples/segment_tree.range_sum_query.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/segment_tree.range_sum_query.test.cpp -------------------------------------------------------------------------------- /examples/union_find_tree.aoj.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/union_find_tree.aoj.test.cpp -------------------------------------------------------------------------------- /examples/union_find_tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/union_find_tree.hpp -------------------------------------------------------------------------------- /examples/union_find_tree.yosupo.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/examples/union_find_tree.yosupo.test.cpp -------------------------------------------------------------------------------- /onlinejudge_bundle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /onlinejudge_bundle/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_bundle/main.py -------------------------------------------------------------------------------- /onlinejudge_verify/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /onlinejudge_verify/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify/config.py -------------------------------------------------------------------------------- /onlinejudge_verify/documentation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /onlinejudge_verify/documentation/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify/documentation/build.py -------------------------------------------------------------------------------- /onlinejudge_verify/documentation/configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify/documentation/configure.py -------------------------------------------------------------------------------- /onlinejudge_verify/documentation/front_matter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify/documentation/front_matter.py -------------------------------------------------------------------------------- /onlinejudge_verify/documentation/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify/documentation/main.py -------------------------------------------------------------------------------- /onlinejudge_verify/documentation/type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify/documentation/type.py -------------------------------------------------------------------------------- /onlinejudge_verify/languages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /onlinejudge_verify/languages/cplusplus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify/languages/cplusplus.py -------------------------------------------------------------------------------- /onlinejudge_verify/languages/cplusplus_bundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify/languages/cplusplus_bundle.py -------------------------------------------------------------------------------- /onlinejudge_verify/languages/csharpscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify/languages/csharpscript.py -------------------------------------------------------------------------------- /onlinejudge_verify/languages/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify/languages/go.py -------------------------------------------------------------------------------- /onlinejudge_verify/languages/haskell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify/languages/haskell.py -------------------------------------------------------------------------------- /onlinejudge_verify/languages/java.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify/languages/java.py -------------------------------------------------------------------------------- /onlinejudge_verify/languages/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify/languages/list.py -------------------------------------------------------------------------------- /onlinejudge_verify/languages/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify/languages/models.py -------------------------------------------------------------------------------- /onlinejudge_verify/languages/nim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify/languages/nim.py -------------------------------------------------------------------------------- /onlinejudge_verify/languages/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify/languages/python.py -------------------------------------------------------------------------------- /onlinejudge_verify/languages/ruby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify/languages/ruby.py -------------------------------------------------------------------------------- /onlinejudge_verify/languages/rust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify/languages/rust.py -------------------------------------------------------------------------------- /onlinejudge_verify/languages/special_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify/languages/special_comments.py -------------------------------------------------------------------------------- /onlinejudge_verify/languages/user_defined.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify/languages/user_defined.py -------------------------------------------------------------------------------- /onlinejudge_verify/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify/main.py -------------------------------------------------------------------------------- /onlinejudge_verify/marker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify/marker.py -------------------------------------------------------------------------------- /onlinejudge_verify/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify/utils.py -------------------------------------------------------------------------------- /onlinejudge_verify/verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify/verify.py -------------------------------------------------------------------------------- /onlinejudge_verify_resources/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify_resources/Gemfile -------------------------------------------------------------------------------- /onlinejudge_verify_resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /onlinejudge_verify_resources/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify_resources/_config.yml -------------------------------------------------------------------------------- /onlinejudge_verify_resources/_includes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /onlinejudge_verify_resources/_includes/document_body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify_resources/_includes/document_body.html -------------------------------------------------------------------------------- /onlinejudge_verify_resources/_includes/document_footer.html: -------------------------------------------------------------------------------- 1 | Back to top page 2 | -------------------------------------------------------------------------------- /onlinejudge_verify_resources/_includes/document_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify_resources/_includes/document_header.html -------------------------------------------------------------------------------- /onlinejudge_verify_resources/_includes/highlight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify_resources/_includes/highlight.html -------------------------------------------------------------------------------- /onlinejudge_verify_resources/_includes/mathjax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify_resources/_includes/mathjax.html -------------------------------------------------------------------------------- /onlinejudge_verify_resources/_includes/theme_fix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify_resources/_includes/theme_fix.html -------------------------------------------------------------------------------- /onlinejudge_verify_resources/_includes/toppage_body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify_resources/_includes/toppage_body.html -------------------------------------------------------------------------------- /onlinejudge_verify_resources/_includes/toppage_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify_resources/_includes/toppage_header.html -------------------------------------------------------------------------------- /onlinejudge_verify_resources/_layouts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /onlinejudge_verify_resources/_layouts/document.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify_resources/_layouts/document.html -------------------------------------------------------------------------------- /onlinejudge_verify_resources/_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify_resources/_layouts/page.html -------------------------------------------------------------------------------- /onlinejudge_verify_resources/_layouts/toppage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify_resources/_layouts/toppage.html -------------------------------------------------------------------------------- /onlinejudge_verify_resources/assets/css/copy-button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify_resources/assets/css/copy-button.css -------------------------------------------------------------------------------- /onlinejudge_verify_resources/assets/js/copy-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify_resources/assets/js/copy-button.js -------------------------------------------------------------------------------- /onlinejudge_verify_resources/assets/site-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/onlinejudge_verify_resources/assets/site-header.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_bundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/tests/test_bundle.py -------------------------------------------------------------------------------- /tests/test_cplusplus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/tests/test_cplusplus.py -------------------------------------------------------------------------------- /tests/test_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/tests/test_docs.py -------------------------------------------------------------------------------- /tests/test_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/tests/test_python.py -------------------------------------------------------------------------------- /tests/test_rust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/tests/test_rust.py -------------------------------------------------------------------------------- /tests/test_special_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/tests/test_special_comments.py -------------------------------------------------------------------------------- /tests/test_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/tests/test_stats.py -------------------------------------------------------------------------------- /tests/test_verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/tests/test_verify.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/online-judge-tools/verification-helper/HEAD/tests/utils.py --------------------------------------------------------------------------------