The online judge system is running on Debian Linux. We are using GNU GCC/G++ for C/C++ compile, and sun-java-jdk1.6 for Java. The compile options are:
C: | gcc Main.c -o Main -fno-asm -Wall -lm --static -std=c99 |
C++: | g++ Main.c -o Main -fno-asm -Wall -lm --static -std=c++0x |
Java: | javac -J-Xms32m -J-Xmx256m Main.java |
Python: | python -c import py_compile; py_compile.compile(r'Main.py') |
C# 4.0: | dmcs -warn:0 -optimize+ -reference:System.Numerics.dll Main.cs |
Our compiler software version:
Your program shall read input from stdin('Standard Input') and write output to stdout('Standard
Output').For example,you can use 'scanf' in C or 'cin' in C++ to read from stdin,and use 'printf' in C
or 'cout' in C++ to write to stdout.
User programs are not allowed to open and read from/write to
files, you will get a "Runtime Error" if you try to do so.
There are some differences between GNU and MS-VC++, such as:
Here is a list of the judge's replies and their meaning:
Can you submit programs for any practice problems on this Online Judge? If you can, then that is the account you use in an online contest. If you can't, then please register an id with password first.