{"id":23895556,"url":"https://github.com/michimani/atcoder","last_synced_at":"2025-09-04T15:44:14.959Z","repository":{"id":197956544,"uuid":"699423883","full_name":"michimani/atcoder","owner":"michimani","description":null,"archived":false,"fork":false,"pushed_at":"2025-08-25T15:18:05.000Z","size":703,"stargazers_count":0,"open_issues_count":32,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-25T17:30:05.884Z","etag":null,"topics":["cpp"],"latest_commit_sha":null,"homepage":"https://kenkoooo.com/atcoder/#/table/michimani","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/michimani.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-10-02T15:51:47.000Z","updated_at":"2025-08-25T15:18:09.000Z","dependencies_parsed_at":"2024-02-13T12:45:43.454Z","dependency_job_id":"c12ab36f-dd2e-4f1d-a9f9-61b07b7621ff","html_url":"https://github.com/michimani/atcoder","commit_stats":null,"previous_names":["michimani/atcoder"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/michimani/atcoder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michimani%2Fatcoder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michimani%2Fatcoder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michimani%2Fatcoder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michimani%2Fatcoder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/michimani","download_url":"https://codeload.github.com/michimani/atcoder/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michimani%2Fatcoder/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273632836,"owners_count":25140771,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-04T02:00:08.968Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cpp"],"created_at":"2025-01-04T15:57:50.666Z","updated_at":"2025-09-04T15:44:14.947Z","avatar_url":"https://github.com/michimani.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"atcoder\n===\n\n[![michimani](https://img.shields.io/endpoint?url=https%3A%2F%2Fatcoder-badges.now.sh%2Fapi%2Fatcoder%2Fjson%2Fmichimani)](https://atcoder.jp/users/michimani)\n\nSolutions for [AtCoder](https://atcoder.jp/) problems.\n\n## Links\n\n- [michimani - AtCoder](https://atcoder.jp/users/michimani)\n- [michimani - AtCoder Problems](https://kenkoooo.com/atcoder/#/user/michimani)\n\n## Using online judge tools\n\n1. install online-judge-tools\n\n    ```bash\n    pip install online-judge-tools\n    ```\n  \n2. create `.vscode/tasks.json`\n\n    ```json\n    {\n      \"tasks\": [\n        {\n          \"type\": \"shell\",\n          \"label\": \"test_atcoder_sample\",\n          \"command\": \"${workspaceFolder}/onlinejudge/cpp-test.sh\",\n          \"args\": [\n            \"${relativeFileDirname}\",\n            \"${fileBasenameNoExtension}\",\n            \"${file}\"\n          ],\n          \"group\": {\n            \"kind\": \"test\",\n            \"isDefault\": true\n          }\n        },\n        {\n          \"type\": \"shell\",\n          \"label\": \"submit_to_atcoder\",\n          \"command\": \"${workspaceFolder}/onlinejudge/cpp-submit.sh\",\n          \"args\": [\n            \"${relativeFileDirname}\",\n            \"${fileBasenameNoExtension}\",\n            \"${file}\"\n          ],\n          \"group\": {\n            \"kind\": \"build\",\n            \"isDefault\": true\n          }\n        }\n      ],\n      \"version\": \"2.0.0\"\n    }\n    ```\n\n## for C++ 23 (Clang 16.0.6)\n\nTo use the same environment as AtCoder's C++ 23 (Clang 16.0.6), please install LLVM 16.0.6 as follows. (ref: https://atcoder.jp/contests/APG4b/rules)\n\n\n```bash\nbrew install llvm@16\n```\n\nAnd add the following to your `.zshrc`\n\n```bash\nexport PATH=\"/opt/homebrew/opt/llvm@16/bin:$PATH\"\n```\n\n## Create new solutions\n\nexample: create solutions for A,B,C of ABC 123\n\n```bash\nnew.sh abc 123 a,b,c\n```\n\nIf you want to open the created files with your favorite editor, you can set the `EDITOR_COMMAND` environment variable. For example, using VSCode.\n\n```bash\nEDITOR_COMMAND=code new.sh abc 123 a,b,c\n```\n\n## License\n\n[MIT](https://github.com/michimani/atcoder/blob/main/LICENSE)\n\n## Author\n\n[michimani210](https://twitter.com/michimani210)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichimani%2Fatcoder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmichimani%2Fatcoder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichimani%2Fatcoder/lists"}