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

https://github.com/sevenc-nanashi/atcoder-limit-colorizer

A userscript that colors the constraints based on their limits on AtCoder.
https://github.com/sevenc-nanashi/atcoder-limit-colorizer

atcoder userscript

Last synced: 24 days ago
JSON representation

A userscript that colors the constraints based on their limits on AtCoder.

Awesome Lists containing this project

README

          

# AtCoder Limit Colorizer

A userscript that colors the constraints based on their limits.
![Screenshot](./screenshot.png)

## Colors

- $N = 998244353, 1000000007$: Special (`#0dcaf0`, from the "Unknown" difficulty of AtCoder Problems)
- $N \geq 10^{10}$: Red
- $N \geq 10^8$: Orange
- $N \geq 10^5$: Yellow
- $N \geq 1000$: Blue
- $N \geq 100$: Cyan
- $N \geq 10$: Green
- Otherwise: Brown

## Installation

1. Install a userscript manager like [Tampermonkey](https://www.tampermonkey.net/).
2. Click [here](https://raw.githubusercontent.com/sevenc-nanashi/atcoder-limit-colorizer/built/index.user.js) to install the script.

## Development

To install dependencies:

```bash
bun install
```

To run:

```bash
bun run dev
```

## License

This project is licensed under the MIT License - see the [LICENSE](./LICENSE) file for details.