Class RanklistRow
java.lang.Object
com.github.rami_sabbagh.codeforces.api.objects.CFObject
com.github.rami_sabbagh.codeforces.api.objects.RanklistRow
public class RanklistRow extends CFObject
Represents a ranklist row.
-
Field Summary
Fields Modifier and Type Field Description long
lastSubmissionTimeSeconds
For IOI contests only.Party
party
Party that took a corresponding place in the contest.int
penalty
Total penalty (in ICPC meaning) of the party.double
points
Total amount of points, scored by the party.ProblemResult[]
problemResults
Party results for each problem.int
rank
Party place in the contest.int
successfulHackCount
int
unsuccessfulHackCount
-
Constructor Summary
Constructors Constructor Description RanklistRow()
-
Method Summary
Methods inherited from class com.github.rami_sabbagh.codeforces.api.objects.CFObject
toString, toStringPretty
-
Field Details
-
party
Party that took a corresponding place in the contest. -
rank
public int rankParty place in the contest. -
points
public double pointsTotal amount of points, scored by the party. -
penalty
public int penaltyTotal penalty (in ICPC meaning) of the party. -
successfulHackCount
public int successfulHackCount -
unsuccessfulHackCount
public int unsuccessfulHackCount -
problemResults
Party results for each problem. Order of the problems is the same as in "problems" field of the returned object. -
lastSubmissionTimeSeconds
public long lastSubmissionTimeSecondsFor IOI contests only. Time in seconds from the start of the contest to the last submission that added some points to the total score of the party.
-
-
Constructor Details
-
RanklistRow
public RanklistRow()
-