Class ProblemStatistics
java.lang.Object
com.github.rami_sabbagh.codeforces.api.objects.CFObject
com.github.rami_sabbagh.codeforces.api.objects.ProblemStatistics
public class ProblemStatistics extends CFObject
Represents a statistic data about a problem.
-
Field Summary
Fields Modifier and Type Field Description int
contestId
Can be absent.String
index
Usually a letter of a letter, followed by a digit, that represent a problem index in a contest.int
solvedCount
Number of users, who solved the problem. -
Constructor Summary
Constructors Constructor Description ProblemStatistics()
-
Method Summary
Methods inherited from class com.github.rami_sabbagh.codeforces.api.objects.CFObject
toString, toStringPretty
-
Field Details
-
contestId
public int contestIdCan be absent. Id of the contest, containing the problem. -
index
Usually a letter of a letter, followed by a digit, that represent a problem index in a contest. -
solvedCount
public int solvedCountNumber of users, who solved the problem.
-
-
Constructor Details
-
ProblemStatistics
public ProblemStatistics()
-