環境
Mac, zsh, atcoder-cli インストール済み。
> acc config
oj-path: /usr/local/bin/oj
default-contest-dirname-format: {ContestID}
default-task-dirname-format: {tasklabel}
default-test-dirname-format: test
default-task-choice: all
default-template: py
エラー
atcoder-cli でacc s
を行いPythonのプログラムを提出しようとした際に以下のエラーが発生。
...
[INFO] PyPy is available for Python interpreter
[ERROR] Matched languages were not narrowed down to one.
[INFO] You have to choose:
5055 (Python (CPython 3.11.4))
5063 (Python (Mambaforge / CPython 3.10.10))
5082 (Python (Cython 0.29.34))
[INFO] save cookie to: /Users/***/Library/Application Support/online-judge-tools/cookie.jar
暫定対応
PyPyの番号が5078なので~/.zshrc
に以下のエイリアスを追加。
alias accs='acc s -- main.py --language 5078'
accs
で提出できるようになった。
参考