CODE FESTIVAL 2015 OKINAWA OPEN

Can Participate: All Rated Range: - Penalty: None


Notice

If you are going to use Java language, you must see the points bellow.

  • The class name of your source code has to be declared as Main. Not to be declared as main or any other class name. For this reason, the file name of yours also designated as Main.java.
  • You're not allowed to use your package. Because the execution command on our system for Java is java {filename}.

Clarifications must be written in English!!


Rules

  1. You may work on these problems in any order you prefer.
  2. You will not be penalized for giving wrong answers either.
  3. If your score equals to other participants, then winner is decided by time.
  4. You are not allowed to collaborate with other participants or any other third parties to solve the problems.
  5. Available programming languages are to be described later. You may use the standard library for each language.

Programming language

You are allowed to use these programming languages.


Judge status

Our system judges your source code whether it is correct or incorrect and returns a result of yours.

Details are shown below tables. Don't forget to see these information.

Status Explanation
WJ
Waiting for Judge. Your source code is waiting for judge by the system. Please reload after a while.
CE
Compilation Error. Our judge system couldn't compile your code. So, your source code is incorrect.
MLE
Memory Limit Exceeded. Each problem is restricted memory limit which your program can use.
That is 256MB usually. Your source code is incorrect because it exceeded the limit.
TLE
Time Limit Exceeded. Each problems have time limit. If execution time of your code exceeds this limit,
the status of judge is TLE. Your source code is incorrect for that reason.
RE
Runtime Error. At least an error occurs while the system is executing your source code.
For example, stack overflow and divided by zero.
These errors are can not be detected by compiling. Your source code is incorrect because of the reason.
OLE
Output Limit Exceeded. The data outputted by your code exceeds the designated size of a problem.
Your source code is incorrect.
IE
Internal Error. This is special case because the error almost exits in our judge system.
Anyway, your source code didn't output a result that is expected correct answer.
Your source code is incorrect.
WA
Wrong Answer. Your source code is incorrect. The code has to output correct result for all cases.
AC
Accepted ! Your source code was accepted correctly.

AC is an only status that means Your source code is correct!.