Asian Elite Programming Contest

Can Participate: - Rated Range: All Penalty: None


Notice

Contest Page was opened.(2014/10/15 00:00:00)


Outline

Asian Elite Programming Contest will be hold at 2014/10/19 20:00 ~ 22:00.

This contests is sponsored by Recruit Holdings Co.,Ltd.


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. Please be aware that you are not allowed to ask questions (*regarding the contest).
  6. Available programming languages are to be described later. You may use the standard library for each language.

The allocation of marks

ProblemABCD
the allocation of marks100100100100
(achievements and points)(20+80)(25+75)(30+70)

For beginners

If you take part in a programming contest for the first time which is held on AtCoder, we make a strong recommendation to you to practice how to submit your source code on AtCoder using Practice Page.

Especially, if you are going to use Java language, you must see points to notice bellow.

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

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 problems are 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 detect 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 !.