Class Submission

java.lang.Object
com.github.rami_sabbagh.codeforces.api.objects.CFObject
com.github.rami_sabbagh.codeforces.api.objects.Submission

public class Submission
extends CFObject
Represents a submission.
  • Field Details

    • id

      public int id
    • contestId

      public int contestId
      Can be absent.
    • creationTimeSeconds

      public long creationTimeSeconds
      Time, when submission was created, in unix-format.
    • relativeTimeSeconds

      public long relativeTimeSeconds
      Number of seconds, passed after the start of the contest (or a virtual start for virtual parties), before the submission.
    • problem

      public Problem problem
    • author

      public Party author
    • programmingLanguage

      public String programmingLanguage
    • verdict

      public Verdict verdict
    • testset

      public Testset testset
      Testset used for judging the submission.
    • passedTestCount

      public int passedTestCount
      Number of passed tests.
    • timeConsumedMillis

      public int timeConsumedMillis
      Maximum time in milliseconds, consumed by solution for one test.
    • memoryConsumedBytes

      public int memoryConsumedBytes
      Maximum memory in bytes, consumed by solution for one test.
    • points

      public double points
      Can be absent. Number of scored points for IOI-like contests.
  • Constructor Details