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 Summary
Fields Modifier and Type Field Description PartyauthorintcontestIdCan be absent.longcreationTimeSecondsTime, when submission was created, in unix-format.intidintmemoryConsumedBytesMaximum memory in bytes, consumed by solution for one test.intpassedTestCountNumber of passed tests.doublepointsCan be absent.ProblemproblemStringprogrammingLanguagelongrelativeTimeSecondsNumber of seconds, passed after the start of the contest (or a virtual start for virtual parties), before the submission.TestsettestsetTestset used for judging the submission.inttimeConsumedMillisMaximum time in milliseconds, consumed by solution for one test.Verdictverdict -
Constructor Summary
Constructors Constructor Description Submission() -
Method Summary
Methods inherited from class com.github.rami_sabbagh.codeforces.api.objects.CFObject
toString, toStringPretty
-
Field Details
-
id
public int id -
contestId
public int contestIdCan be absent. -
creationTimeSeconds
public long creationTimeSecondsTime, when submission was created, in unix-format. -
relativeTimeSeconds
public long relativeTimeSecondsNumber of seconds, passed after the start of the contest (or a virtual start for virtual parties), before the submission. -
problem
-
author
-
programmingLanguage
-
verdict
-
testset
Testset used for judging the submission. -
passedTestCount
public int passedTestCountNumber of passed tests. -
timeConsumedMillis
public int timeConsumedMillisMaximum time in milliseconds, consumed by solution for one test. -
memoryConsumedBytes
public int memoryConsumedBytesMaximum memory in bytes, consumed by solution for one test. -
points
public double pointsCan be absent. Number of scored points for IOI-like contests.
-
-
Constructor Details
-
Submission
public Submission()
-