やり方についての詳細は rime_demo に記載しています。
立命の有志(OB含む)によるプログラミングコンテストの準備プロジェクトです.
必要なもの
- Git
- Rime (作問ツール)
- Python3 (Rimeの実行に必要)
- コード実行に使う各言語の処理系 (必要に応じてgcc, g++, javaなど)
aptやyumなどのパッケージマネージャーでインストールできます.
$ sudo apt-get install git
まずPython3が既にインストールされているか確認します.
$ python -V
Python 3.10.12
TODO python3のインストール方法
pipを用いてインストールします.
$ pip install rime
インストールに成功したか確認します.
$ rime
rime.py <command> [<options>...] [<args>...]
Rime is a tool for programming contest organizers to automate usual, boring
and error-prone process of problem set preparation. It supports various
programming contest styles like ACM-ICPC, TopCoder, etc. by plugins.
To see a brief description and available options of a command, try:
rime.py help <command>
(略)
テストが走ることを確認します.
$ rime test
[ COMPILE ] A+B/tests: generator.cc
[ COMPILE ] A+B/tests: validator.cc
[ GENERATE ] A+B/tests: generator.cc
(略)