All judging will be done by executing your submission via command line. Input and output will be done via stdin/stdout redirection (< and >). For example, to process a C program we will do the following:
C compiles will be of the form: gcc -g -O2 -std=gnu99 -lm
C++ compiles will be of the form: g++ -g -O2 -std=gnu++11
Java compiles will be of the form: javac file.java
To run it, we do java file (where class name matches file name).
Note: If you use Netbeans, remember to remove the line that says: package name from the top of the souce
file before submitting.
Here is the process the judges will use to determine the response
you will receive after submmitting a solution: