Git Product home page Git Product logo

algorithm_training's Introduction

algorithm_training

python -m unittest tests/tests_sample.py

環境構築

# python環境
poetry install


# AtCoder Cliを使ってログインする
# https://github.com/Tatamo/atcoder-cli
# https://github.com/online-judge-tools/oj/tree/master
npm install -g atcoder-cli
acc login
poetry run oj login https://atcoder.jp/

accコマンド集

# 問題とテストケースのダウンロード
poetry run acc new abc001 --choice all --template python

# コンテストのページリンク取得
poetry run acc contest

# コンテストのタスクリスト
poetry run acc tasks

# テスト実行
poetry run oj t -c "python3 main.py" -d ./tests/

# 提出
# python環境が複数あるので--language 5055をojに渡す
# ojに -l 5055を渡したいので、accとpoetryの引数判定を回避するために -- -- している
poetry run acc submit main.py -- -- -l 5055
poetry shell

を実行しておくと poetry runが不要になる

テンプレート作成

cd `acc config-dir`
mkdir <your-template-name>
cd <your-template-name>
touch template.json
touch main.py
{
    "task": {
        "program": ["main.py"],
        "submit": "main.py",
        "static": [],
        "testdir": "tests",
        "cmd": "echo Hi!"
    },
    "contest": {
        "static": [],
        "cmd": "echo Ho!"
    }
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.