Блог пользователя Egor

Автор Egor, история, 4 дня назад, По-английски

Hello!

I am introducing a new tool for competitive programming—submitter. It does just that, submits your solution to supported online judges and displays results, all from the comfort of your command line.

Prerequisites

You would need rust and docker

Installation

cargo install --git https://github.com/EgorKulikov/submitter

Usage

submitter <task url> <language> <path to solution>

Supported sites

At the moment the following is supported:

  • Codeforces (unless Cloudflare would want to click you on the box, I cannot fool it yet)
  • Codechef
  • Yandex Contest
  • AtCoder
  • Universal Cup
  • Luogu (no support for changing language, language of the last submit is used)
  • Проголосовать: нравится
  • +171
  • Проголосовать: не нравится

»
4 дня назад, # |
  Проголосовать: нравится +46 Проголосовать: не нравится

Over-engineering at its finest

  • »
    »
    4 дня назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    If you know how to get around (non-checkbox) Cloudflare another way, I am all ears

    • »
      »
      »
      4 дня назад, # ^ |
        Проголосовать: нравится +36 Проголосовать: не нравится
      • »
        »
        »
        »
        4 дня назад, # ^ |
          Проголосовать: нравится 0 Проголосовать: не нравится

        I am afraid it also does goes through some cloudflare checks, but thanks, it seems to has less load and hence not reverting to checkbox as frequently

        • »
          »
          »
          »
          »
          3 дня назад, # ^ |
            Проголосовать: нравится +6 Проголосовать: не нравится

          It seems that mirror.codeforces.com doesn't have Cloudflare enabled (ref).

          • »
            »
            »
            »
            »
            »
            3 дня назад, # ^ |
              Проголосовать: нравится 0 Проголосовать: не нравится

            Maybe, but they do some kind of browser checking anyway. Namely, I am getting a page where the body starts with

            <p>Please wait. Your browser is being checked. It may take a few seconds...</p>
            
            • »
              »
              »
              »
              »
              »
              »
              3 дня назад, # ^ |
                Проголосовать: нравится +12 Проголосовать: не нравится
              • »
                »
                »
                »
                »
                »
                »
                »
                3 дня назад, # ^ |
                  Проголосовать: нравится 0 Проголосовать: не нравится

                Well, that's nice, but not something I want to spend my time on

»
3 дня назад, # |
  Проголосовать: нравится +28 Проголосовать: не нравится

Is it really more convenient to paste url to terminal than to submit via website?

  • »
    »
    3 дня назад, # ^ |
      Проголосовать: нравится +17 Проголосовать: не нравится

    It is if you use other tools in tandem

  • »
    »
    3 дня назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    Or bat file, which takes problem id as input and generates corresponding url. I did that with oj when I used that for atcoder submits while I still used c++

»
3 дня назад, # |
  Проголосовать: нравится +43 Проголосовать: не нравится

By the way, I forgot to write why I wanted such a tool. I usually use 2 screens for competitive programming, one for browser and one for ide. I do not want to shuffle browsers, so I can keep an eye on the results of the submit while reading the next problem, so I much prefer for the result of the submit to be shown in terminal, which is part of my ide layout.

»
3 дня назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

cool

»
3 дня назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

why would i use the tool over submitting myself?

»
3 дня назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

That's really cool, especially the fact that you did this for all these different websites. Thank you so much!!

»
3 дня назад, # |
  Проголосовать: нравится +19 Проголосовать: не нравится

Whoever uses it, be careful: it is much easier to accidentally submit something you didn't want to with this thing than without (for example, by pressing <Up> <Up> <Up> <Up> <Up> <Return> in the terminal with an incorrect number of <Up>s)

»
3 дня назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

will it work during the live contest??

»
3 дня назад, # |
Rev. 23   Проголосовать: нравится 0 Проголосовать: не нравится

Suggestion to use this easier(works for codeforces idk about others).

we know that the link to a problem in Codeforces is always(most of the times)https://codeforces.me/contest/<contest ID>/problem/<problem ID>

we can use bash/shell scripting to automate the generation of links and get writing language to execute submitter <task url> <language> <path to solution>

You can just need to run the below command in the terminal to declare it or add in the .bashrc file to make it permanent

bash script

But to use what I tried, we need to maintain the directory structure as

directory_structure

now to run new command we just need to do msubmitter <problemID> <file name>

Example msubmitter A A.cpp (assuming we are executing this in the same directory as the solution file is in and the solution file is in the directory with name as <contestID>)

what the above bash script does is it gets the current working directory name and problem ID you entered, and creates the link ashttps://codeforces.me/contest/2039/problem/A, gets the extension of your file and then executes the command submitter <task URL> <language> <path to solution>

once we run msubmitter A A.cpp,
submitter https://codeforces.me/contest/2039/problem/A c++ A.cpp will get executed

Note: u first need to install the "submitter" by following his instructions

executing command output
»
39 часов назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Support for toph.co is added