10
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

atcoderのテストケースを通すvim pluginを作った

Posted at

qiita初投稿のため、いたらないところもたくさんあると思いますがご指摘いただけると助かります。

はじめに

こんにちは、飛べない豚です。
題名の通りatcoderのテストケースをチェックするvimpluginを作りました。
https://github.com/cannot-fly-pig/vim-atcoder
screenshot0.jpg
screenshot1.jpg
↑こんな感じ

使い方

:Atcoder コンテスト名 コンテスト番号 task(aとかbとか)

(例

:Atcoder ABC 131 c

と入力してエンターすると今開いているコードを実行してACかWAかを判定してくれます。
詳しくはREADME.mdを読んでください。

仕組み

  1. curlを使ってatcoderのコンテストのページを取得
  2. 正規表現を使ってパース、入力と出力を取得
  3. 2で取得した入力を使って実行、正解かどうかを判定
  4. データの整形、出力

と、まぁやってることは単純ですね

改善点

  • 今の所c++しか実行できないので対応言語を増やす
  • 企業コンへの対応
  • 非同期処理化

最後に

いかがだったでしょうか。
vimでatcoderをしている皆さん、そしてvimpluginを作ってみようと思っている皆さんの助けになれば幸いです。
ありがとうございました。

10
2
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?