denkCF's picture
Update README.md
3de5ee5 verified
---
datasets:
- name: usersCodeforcesSubmissionsEnd2024
size: 200MB
task_categories:
- other
languages:
- en
licenses:
- cc-by-4.0
tags:
- codeforces
- competitive-programming
- submissions
pretty_name: Codeforces Users Submissions (End of 2024)
description: >
This dataset contains anonymized submission data of ≈15,000 Codeforces
users, spanning from the inception of Codeforces to the end of November
2024.
download_size: 100MB
dataset_size: 1.2GB
license: cc-by-4.0
language:
- en
tags:
- codeforces
- submissions
size_categories:
- 10M<n<100M
---
# Codeforces Users Submissions Dataset (End of 2024)
This project provides the usersCodeforcesSubmissionsEnd2024.csv file, containing anonymized submission data of approximately 15,000 active Codeforces users. The dataset includes all submissions from the inception of Codeforces up to the end of November 2024. It is designed to support AI and data-driven projects. (All data was collected using the open Codeforces API)
## Dataset Overview
The file contains **17,607,999 rows** with the following columns:
- **`handle`**: An anonymized and shuffled user nickname (e.g., `user{i}`).
- **`rating_at_submission`**: User's rating at the time of submission.
- **`problem_rating`**: Problem difficulty rating.
- **`id_of_submission_task`**: Unique problem identifier on Codeforces.
- **`verdict`**: Result of the submission (e.g., `OK`, `WRONG_ANSWER`).
- **`time`**: Time of submission (in seconds since the Unix epoch).
## Purpose of the Dataset
1. **AI Development**: This dataset can be used to create intelligent systems to enhance user learning on Codeforces.
_(Example: The author of this dataset is currently working on the project "Codeforces User Analysis System for Generating Individual Training Recommendations," which aims to recommend tasks to users based on their weaknesses.)_
2. **Time Saving**: Collecting such data manually can be time-consuming (it took ≈7 hours for this dataset). By providing it in a ready-to-use format, we aim to save your time and effort.
3. **Reduce Server Load**: This dataset minimizes repetitive data scraping, thereby reducing the load on Codeforces servers.
## License
This dataset is shared under the [CC BY 4.0 License](https://creativecommons.org/licenses/by/4.0/). You are free to use it for your projects with proper attribution.
## How to Use
1. Download the `usersCodeforcesSubmissionsEnd2024.zip` file.
2. Unzip the file to access the `usersCodeforcesSubmissionsEnd2024.csv` dataset:
- On Linux/macOS: Use the `unzip` command in the terminal.
- On Windows: Right-click the file and select "Extract All."
3. Load the CSV file into your favorite data analysis tool:
```python
import pandas as pd
df = pd.read_csv("usersCodeforcesSubmissionsEnd2024.csv")
# Good luck with your projects :)