项目作者: yadav-aman

项目描述 :
Automate codeforces.com competitions
高级语言: C++
项目地址: git://github.com/yadav-aman/codeforces-helper.git
创建时间: 2020-10-15T09:55:35Z
项目社区:https://github.com/yadav-aman/codeforces-helper

开源协议:

下载


Helper bot for codeforces contests

This script automatically extracts the sample test cases of a given codeforces contest, creates sparate files for inputs and outputs and organizes them in saperate folder of each problem.

You can also provide your own template file and the script will create a solution file based on the template file for each question in the contest.

This script works on both windows and linux

All sample test cases can be automatically checked using runtests.py

Installation

Make sure python3 is installed on your machine.

  1. git clone https://github.com/yadav-aman/codeforces-helper.git
  2. cd codeforces-helper
  • Linux

    1. pip3 install -r requirements.txt
  • Windows

    1. pip install -r requirements.txt

Usage

  • Linux

    1. python3 app.py <contest ID or contest URL>

    Make an executable in linux

    1. chmod +x app.py

    After making the script executable we can directy run the script as

    1. ./app.py <contest ID or contest URL>
  • Windows

    1. python app.py <contest ID or contest URL>
  • Examples

    1. python app.py 1234
    1. python3 app.py https://codeforces.com/contest/1234
    1. ./app.py 1234

Automatically checking test cases

  • Competiton directory generated by app.py contains runtests.py file that is used to automatically compare expected output with your output.

    If i want to check the solution of Problem D then i can run the following command
    1. cd 1234
    2. ./runtests.py d
    OR
    1. python3 runtest.py 1234/d

Please do 🌟 this project if you find it interesting