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 Details

    • points

      public double points
    • penalty

      public int penalty
      Penalty (in ICPC meaning) of the party for this problem.
    • rejectedAttemptCount

      public int rejectedAttemptCount
      Number of incorrect submissions.
    • type

      public ProblemResultType 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 bestSubmissionTimeSeconds
      Number of seconds after the start of the contest before the submission, that brought maximal amount of points for this problem.
  • Constructor Details