Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Contest_API.md
Original file line number Diff line number Diff line change
Expand Up @@ -1839,6 +1839,9 @@ Properties of run objects:
| contest\_time | RELTIME | Contest relative time when run completed.
| run\_time | number | Run time in seconds. Should be a non-negative integer multiple of `0.001`. The reason for this is to not have rounding ambiguities while still using the natural unit of seconds.

A CCS should create each run object as soon as it is ready.
This will for example allow clients to track judging progress in real-time.

#### Examples

Request:
Expand Down
5 changes: 5 additions & 0 deletions Contest_Control_System_Requirements.md
Original file line number Diff line number Diff line change
Expand Up @@ -990,6 +990,11 @@ return from the `/access` endpoint:
}
```

Furthermore, the CCS must satisfy the following:

- It must publish [run](contest_api#runs) objects in real-time, so
that ICPC-Live can track and publish judging progress.


#### Access Restrictions

Expand Down