Crates.io | cargo-boj |
lib.rs | cargo-boj |
version | 0.6.0 |
source | src |
created_at | 2023-03-23 06:28:08.658656 |
updated_at | 2023-12-12 01:20:01.405847 |
description | Cargo-BOJ: test and submit solutions to BOJ problems |
homepage | https://github.com/Bubbler-4/cargo-boj |
repository | https://github.com/Bubbler-4/cargo-boj |
max_upload_size | |
id | 817985 |
size | 76,966 |
Test and submit solutions to BOJ (Baekjoon Online Judge) problems.
Defaults are geared towards Rust solutions, but non-Rust usage is supported as well.
A stable Rust toolchain.
cargo install cargo-boj
You can use the same command to update to the latest version.
The default usage of test
and submit
commands assume that cargo boj
is being run at the crate root with
either src/main.rs
or src/bin/main.rs
being the solution file.
src/main.rs
takes precedence if both are present.
Logging in to BOJ with ID and password cannot be automated because it is protected with reCaptcha.
So, the users are expected to log in on their own browser first, and then copy relevant cookies into cargo-boj
.
$ cargo boj login
First log in to www.acmicpc.net on your browser with auto-login enabled.
Then copy and paste two cookies for www.acmicpc.net from your browser.
bojautologin: 3b1adXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
OnlineJudge: n00lXXXXXXXXXXXXXXXXXXXXXX
Cookies set.
or:
$ cargo boj login --bojautologin=3b1adXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX --onlinejudge=n00lXXXXXXXXXXXXXXXXXXXXXX
Tests your code against example test cases for the given problem.
-r, --refresh
flag.-p, --spj-prompt
flag is provided so that you can chain test
and submit
commands and still avoid submitting
obviously incorrect solutions to SPJ problems.# Test main.rs against example test cases of problem 1000
$ cargo boj test 1000
# Test src/bin/sol_1000.rs
$ cargo boj test 1000 --bin=sol_1000
# Test 1000.py
$ cargo boj test 1000 --cmd='python 1000.py'
# Test and submit problem 1008, but with user confirmation
$ cargo boj test 1008 --spj-prompt && cargo boj submit 1008
Submits your code to BOJ using the credentials provided with cargo boj login
.
The default language is Rust 2021
(language ID 113). To submit solutions in other languages,
refer to BOJ Help: language info.
# Submit main.rs as Rust 2021 solution to problem 1000. Code open setting follows account preference
$ cargo boj submit 1000
# Submit sol_1000.rs as Rust 2018 solution, with code closed
$ cargo boj submit 1000 --path=src/bin/sol_1000.rs --lang=94 --code-open=n
When you open a problem in a contest, the address will be like https://www.acmicpc.net/contest/problem/963/1
.
Then the problem ID for this problem is 963/1
.
You can use this ID in place of "problem ID" when using cargo boj test
and cargo boj submit
.
-r, --refresh
option to cargo boj test
-p
argument not following bpaf rules-p, --spj-prompt
option to cargo boj test
cargo boj
exitscargo boj test
trying to run incorrect executable name when the file to run is src/main.rs
cargo boj test
failing to find the built executable on Windows