0
1

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 1 year has passed since last update.

AtCoderメモ

Last updated at Posted at 2023-11-15

この記事について

AtCoderのコンテスト参加中に操作がわからなくなったりした時のためのメモ
(ほぼ自分用です。。)

参加中に見るためのマニュアル

テンプレコード

とりあえずファイル作ったらこれ貼っとけ(実務では決してこんなことすなよ)

#include<bits/stdc++.h>
using namespace std;

template<class T> inline bool chmin(T& a, T b) {
    if (a > b) { a = b; return true; }
    else return false;
}
template<class T> inline bool chmax(T& a, T b) {
    if (a < b) { a = b; return true; }
    return false;
}

int main () {
  
}

ACLとchmin/chmaxはほぼ必須なイメージですな。。

AtCoder CLI

VScodeでのデバッグ

環境構築系

0
1
0

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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?