atcoder-cliで既にacc newで追加したディレクトリに問題を追加したいとき
今回はatcoder-cliで既にacc newで追加したディレクトリに問題を追加したいときどのようにすれば良いのかについてご紹介いたします。
atcoder-cliで既にacc newで追加したディレクトリに問題を追加したいとき
結論を言うと、acc addかforceオプションを使いましょう。(※forceオプションを使ったせいかバグったのでacc addを推奨します)
actcoder-cliでacc new -hでヘルプが見れますが、その中でforceオプションがあります。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
$ acc new --help Usage: acc new|n [options] <contest-id> create new contest project directory Options: -c, --choice <choice> how to choice tasks to add -f, --force ignore existent directories -d, --contest-dirname-format <format> specify the format to name contest directory. defaults to "{ContestID}" -t, --task-dirname-format <format> specify the format to name task directories. defaults to "{tasklabel}" --no-tests skip downloading sample cases by using online-judge-tools --template <name> specify the provisioning template --no-template do not use templates, even if specified by global config -h, --help output usage information Supported arguments for --choice: inquire inquire the tasks to add all select all tasks none select no tasks rest select all tasks not added yet (without --force option, same with "all") next select the top task that is not added yet |
そこで、例えばabc244の問題でA問題を追加していた場合は、下記の画像のようにA問題以外を選択して追加してあげれば他の問題もfetchすることが可能です。
終わりに
今回はatcoder-cliで既にacc newで追加したディレクトリに問題を追加したいときどのようにすれば良いのかについてご紹介いたしました。
ディスカッション
コメント一覧
まだ、コメントがありません