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
- You may work on these problems in any order you prefer.
- You will not be penalized for giving wrong answers either.
- If your score equals to other participants, then winner is decided by time.
- You are not allowed to collaborate with other participants or any other third parties to solve the problems.
- Please be aware that you are not allowed to ask questions (*regarding the contest).
- Available programming languages are to be described later. You may use the standard library for each language.
The allocation of marks
| Problem | A | B | C | D |
|---|---|---|---|---|
| the allocation of marks | 100 | 100 | 100 | 100 |
| (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 asmainand any other class name. For this reason, the file name of yours also designated asMain. -
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 |
|
| CE |
|
| MLE |
That is 256MB usually. Your source code is incorrect because it exceeded the limit. |
| TLE |
the status of judge is TLE. Your source code is incorrect for that reason. |
| RE |
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 |
Your source code is incorrect. |
| IE |
Anyway, your source code didn't output a result that is expected correct answer. Your source code is incorrect. |
| WA |
|
| AC |
|
AC is an only status that means Your source code is correct !.