|
|
back to boardCommon BoardFail (Compilation) What does it mean? Compilation Time Limit? For example: [ccode] for (i = 0; i <= T; ++i) doOp(); [/ccode] Gets Fail and [ccode] for (i = 0; i <= T - 4; i += 4) { doOp(); doOp(); doOp(); doOp(); } for (; i <= T; ++i) doOp(); [/ccode] Compiles normally. P.S. Locally everything of course compiles Please, tell me the ID of failed submit Re: Please, tell me the ID of failed submit 1097366 Wrong Answer 1097365 Fail (Compilation) Difference is almost nothing Edited by author 26.02.2006 23:48 Re: Please, tell me the ID of failed submit One more strange pair of sources (difference is only one "inline") 1097808 Time Limit Exceeded 1097805 Fail (Compilation) Still I cannot find small code that will cause Fail. P.S Maybe compiler crashes on many inline functions. But in previous pair it crashes on one that have less calls of inline functions. Edited by author 26.02.2006 23:50 I know the problem (+) I found the reason of such strange situation. I'll tell you it later and fix it in few days. |
|
|