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 Party
author
int
contestId
Can be absent.long
creationTimeSeconds
Time, when submission was created, in unix-format.int
id
int
memoryConsumedBytes
Maximum memory in bytes, consumed by solution for one test.int
passedTestCount
Number of passed tests.double
points
Can be absent.Problem
problem
String
programmingLanguage
long
relativeTimeSeconds
Number of seconds, passed after the start of the contest (or a virtual start for virtual parties), before the submission.Testset
testset
Testset used for judging the submission.int
timeConsumedMillis
Maximum time in milliseconds, consumed by solution for one test.Verdict
verdict
-
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()
-