Class Problem
java.lang.Object
com.github.rami_sabbagh.codeforces.api.objects.CFObject
com.github.rami_sabbagh.codeforces.api.objects.Problem
public class Problem extends CFObject
Represents 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.String
name
Localized.double
points
Can be absent.String
problemsetName
Can be absent.int
rating
Can be absent.String[]
tags
Problem tags.ProblemType
type
-
Constructor Summary
Constructors Constructor Description Problem()
-
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. -
problemsetName
Can be absent. Short name of the problemset the problem belongs to. -
index
Usually a letter of a letter, followed by a digit, that represent a problem index in a contest. -
name
Localized. -
type
-
points
public double pointsCan be absent. Maximum amount of points for the problem. -
rating
public int ratingCan be absent. Problem rating (difficulty). -
tags
Problem tags.
-
-
Constructor Details
-
Problem
public Problem()
-