├── .gitignore ├── LICENSE ├── README.md ├── rating.cpp ├── rating.py ├── spider_json.py ├── spider_txt.py └── tests ├── cf_rating_official_908.json ├── cf_rating_official_908.txt ├── cf_rating_official_911.json ├── cf_rating_official_911.txt ├── cf_rating_official_917.json ├── cf_rating_official_917.txt ├── cf_rating_result_908.json ├── cf_rating_result_908.txt ├── cf_rating_result_911.json ├── cf_rating_result_911.txt ├── cf_rating_result_917.json └── cf_rating_result_917.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store 3 | *.pyc 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QAQrz/Codeforces-Rating-System/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QAQrz/Codeforces-Rating-System/HEAD/README.md -------------------------------------------------------------------------------- /rating.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QAQrz/Codeforces-Rating-System/HEAD/rating.cpp -------------------------------------------------------------------------------- /rating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QAQrz/Codeforces-Rating-System/HEAD/rating.py -------------------------------------------------------------------------------- /spider_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QAQrz/Codeforces-Rating-System/HEAD/spider_json.py -------------------------------------------------------------------------------- /spider_txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QAQrz/Codeforces-Rating-System/HEAD/spider_txt.py -------------------------------------------------------------------------------- /tests/cf_rating_official_908.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QAQrz/Codeforces-Rating-System/HEAD/tests/cf_rating_official_908.json -------------------------------------------------------------------------------- /tests/cf_rating_official_908.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QAQrz/Codeforces-Rating-System/HEAD/tests/cf_rating_official_908.txt -------------------------------------------------------------------------------- /tests/cf_rating_official_911.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QAQrz/Codeforces-Rating-System/HEAD/tests/cf_rating_official_911.json -------------------------------------------------------------------------------- /tests/cf_rating_official_911.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QAQrz/Codeforces-Rating-System/HEAD/tests/cf_rating_official_911.txt -------------------------------------------------------------------------------- /tests/cf_rating_official_917.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QAQrz/Codeforces-Rating-System/HEAD/tests/cf_rating_official_917.json -------------------------------------------------------------------------------- /tests/cf_rating_official_917.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QAQrz/Codeforces-Rating-System/HEAD/tests/cf_rating_official_917.txt -------------------------------------------------------------------------------- /tests/cf_rating_result_908.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QAQrz/Codeforces-Rating-System/HEAD/tests/cf_rating_result_908.json -------------------------------------------------------------------------------- /tests/cf_rating_result_908.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QAQrz/Codeforces-Rating-System/HEAD/tests/cf_rating_result_908.txt -------------------------------------------------------------------------------- /tests/cf_rating_result_911.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QAQrz/Codeforces-Rating-System/HEAD/tests/cf_rating_result_911.json -------------------------------------------------------------------------------- /tests/cf_rating_result_911.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QAQrz/Codeforces-Rating-System/HEAD/tests/cf_rating_result_911.txt -------------------------------------------------------------------------------- /tests/cf_rating_result_917.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QAQrz/Codeforces-Rating-System/HEAD/tests/cf_rating_result_917.json -------------------------------------------------------------------------------- /tests/cf_rating_result_917.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QAQrz/Codeforces-Rating-System/HEAD/tests/cf_rating_result_917.txt --------------------------------------------------------------------------------