FAQ


Q:What is the compiler the judge is using and what are the compiler options?
A:

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:

  • gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5)
  • javac version 1.8.0_66
  • Python version 2.7.3
  • Mono JIT compiler version 2.10.8.1 (Debian 2.10.8.1-1ubuntu2.2)
Q:Where is the input and the output?
A:

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.

Here is a sample solution for problem 1000 using C++: LINK
Q:Why did I get a Compile Error? It's well done!
A:

There are some differences between GNU and MS-VC++, such as:

  1. main must be declared as int, void main will end up with a Compile Error.
  2. i is out of definition after block "for(int i=0...){...}"
  3. itoa is not an ANSI function.
  4. __int64 of VC is not ANSI, but you can use long long for 64-bit integer.
Q:What is the meaning of the judge's reply XXXXX?
A:

Here is a list of the judge's replies and their meaning:

  • Pending : The judge is so busy that it can't judge your submit at the moment, usually you just need to wait a minute and your submit will be judged.
  • Pending Rejudge : The test datas has been updated, and the submit will be judged again and all of these submission was waiting for the Rejudge.
  • Compiling : The judge is compiling your source code.
  • Running & Judging: Your code is running and being judging by our Online Judge.
  • Accepted : OK! Your program is correct!.
  • Presentation Error : Your output format is not exactly the same as the judge's output, although your answer to the problem is correct. Check your output for spaces, blank lines,etc against the problem output specification.
  • Wrong Answer : Correct solution not reached for the inputs. The inputs and outputs that we use to test the programs are not public (it is recomendable to get accustomed to a true contest dynamic ;-).
  • Time Limit Exceeded : Your program tried to run during too much time.
  • Memory Limit Exceeded : Your program tried to use more memory than the judge default settings.
  • Output Limit Exceeded: Your program tried to write too much information. This usually occurs if it goes into a infinite loop. Currently the output limit is 1M bytes.
  • Runtime Error : All the other Error on the running phrase will get Runtime Error, such as 'segmentation fault','floating point exception','used forbidden functions', 'tried to access forbidden memories' and so on.
  • Compile Error : The compiler (gcc/g++/gpc) could not compile your ANSI program. Of course, warning messages are not error messages. Click the link at the judge reply to see the actual error message.
Q:How to attend Online Contests?
A:

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.

Any questions/suggestions please post at our FORUM.