https://github.com/michimani/atcoder
https://github.com/michimani/atcoder
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/michimani/atcoder
- Owner: michimani
- License: mit
- Created: 2023-10-02T15:51:47.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-29T03:55:57.000Z (about 1 year ago)
- Last Synced: 2024-05-01T17:44:44.340Z (about 1 year ago)
- Language: C++
- Size: 452 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 32
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
atcoder
===[](https://atcoder.jp/users/michimani)
Solutions for [AtCoder](https://atcoder.jp/) problems.
## Links
- [michimani - AtCoder](https://atcoder.jp/users/michimani)
- [michimani - AtCoder Problems](https://kenkoooo.com/atcoder/#/user/michimani)## Using online judge tools
1. install online-judge-tools
```bash
pip3 install online-judge-tools
```
2. create `.vscode/tasks.json````json
{
"tasks": [
{
"type": "shell",
"label": "test_atcoder_sample",
"command": "${workspaceFolder}/onlinejudge/cpp-test.sh",
"args": [
"${relativeFileDirname}",
"${fileBasenameNoExtension}",
"${file}"
],
"group": {
"kind": "test",
"isDefault": true
}
},
{
"type": "shell",
"label": "submit_to_atcoder",
"command": "${workspaceFolder}/onlinejudge/cpp-submit.sh",
"args": [
"${relativeFileDirname}",
"${fileBasenameNoExtension}",
"${file}"
],
"group": {
"kind": "build",
"isDefault": true
}
}
],
"version": "2.0.0"
}
```## Create new solutions
example: create solutions for A,B,C of ABC 123
```bash
new.sh abc 123 a,b,c
```## License
[MIT](https://github.com/michimani/atcoder/blob/main/LICENSE)
## Author
[michimani210](https://twitter.com/michimani210)