File size: 2,899 Bytes
3de5ee5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6510302
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40e63f7
 
 
 
 
6510302
 
 
 
3de5ee5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
---

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 :)