Difference between revisions of "Run.properties"
From PC2wiki
m (added box for required names) |
m (→Example: add see also and cat) |
||
Line 41: | Line 41: | ||
sourcecount=2 | sourcecount=2 | ||
solved=yes | solved=yes | ||
+ | |||
+ | =See Also= | ||
+ | |||
+ | * [[Contest Data Package]] | ||
+ | |||
+ | [[Category:Import and Export]] |
Revision as of 21:05, 6 November 2014
The run.properties file contains information about a run.
Required names
name | Description | Example | Type |
---|---|---|---|
mainfile |
source file name of main (to be executed) source file | sumit.java | string/filename |
Optional names
name | Description | Example | Type |
---|---|---|---|
contesttime |
ms since contest start when submission received | 75000 | long |
submittedby |
either a # meaning a team or a login account | judge3 | string |
language |
language name, can be the file extension or the full title of the language used | python | string |
problem |
problem short name as found in the problemset.yaml | sumit | string/directory |
solved |
did this submission solve the problem? | yes | no |
sourcecount |
number of source files submitted | 3 | integer |
source### |
name of the source file ### | sumit.py | string/filename |
Example
mainfile=Main.java problem=low language=Java submittedby=28 contesttime=1897053 source1=Main.java source2=Utilities.java sourcecount=2 solved=yes