An open API service indexing awesome lists of open source software.

https://github.com/yuma140902/atcoder


https://github.com/yuma140902/atcoder

Last synced: 18 days ago
JSON representation

Awesome Lists containing this project

README

          

# atcoder

## 開発用シェルの起動方法

```sh
nix develop -c "$SHELL"
```

## プログラムのビルド方法

### C++

```sh
cd cpp_template/
./build [MODE] C++ファイル
```

`MODE` には `gcc`、`clang`、`san` のいずれかを指定する。

- `gcc` - gcc でコンパイルする
- `clang` - clang でコンパイルする
- `san` - Address Sanitizer、Undefined Behavior Sanitizer を有効化して clang でコンパイルする

`MODE` を省略すると `clang` が指定されたものとみなされる。

`a.out` が出力されるので `./a.out` で実行する。

### Rust

```sh
cd rust_template/
cargo run --release --bin <バイナリ名>
```