Class ProblemResult
java.lang.Object
com.github.rami_sabbagh.codeforces.api.objects.CFObject
com.github.rami_sabbagh.codeforces.api.objects.ProblemResult
public class ProblemResult extends CFObject
Represents a submission results of a party for a problem.
-
Field Summary
Fields Modifier and Type Field Description long
bestSubmissionTimeSeconds
Number of seconds after the start of the contest before the submission, that brought maximal amount of points for this problem.int
penalty
Penalty (in ICPC meaning) of the party for this problem.double
points
int
rejectedAttemptCount
Number of incorrect submissions.ProblemResultType
type
If type is PRELIMINARY then points can decrease (if, for example, solution will fail during system test). -
Constructor Summary
Constructors Constructor Description ProblemResult()
-
Method Summary
Methods inherited from class com.github.rami_sabbagh.codeforces.api.objects.CFObject
toString, toStringPretty
-
Field Details
-
points
public double points -
penalty
public int penaltyPenalty (in ICPC meaning) of the party for this problem. -
rejectedAttemptCount
public int rejectedAttemptCountNumber of incorrect submissions. -
type
If type is PRELIMINARY then points can decrease (if, for example, solution will fail during system test). Otherwise, party can only increase points for this problem by submitting better solutions. -
bestSubmissionTimeSeconds
public long bestSubmissionTimeSecondsNumber of seconds after the start of the contest before the submission, that brought maximal amount of points for this problem.
-
-
Constructor Details
-
ProblemResult
public ProblemResult()
-