During the contest, teams will submit proposed solutions to the contest problems to the judges using the Kattis contest control system. The team manual for Kattis can be found here.
Source files submitted to the judges will be compiled using the following command line arguments for the respective language:
The "{files}" in the above commands represents the list of source files from the submission which will actually be compiled. Files with the following suffixes (and only files with these suffixes) will be submitted to the compiler:
For each language, if the above compilation step is successful then the submission will be executed as follows:
Execution as described above will take place in a "sandbox". The sandbox will allocate 2GB of memory; the entire program, including its runtime environment, must execute within this memory limit. For interpreted languages (Java, Python, and Kotlin) the runtime environment includes the interpreter (that is, the JVM for Java/Kotlin and the Python interpreter for Python).
The sandbox memory allocation size will be the same for all languages and all contest problems. For Java and Kotlin, the above command shows the stack size and heap size settings which will be used when the program is run in the sandbox. For C, C++, and Python, the heap and stack sizes are limited only by the total amount of memory available in the sandbox.