Hello everyone,
I was attempting to solve problem YODANESS in Java. Not a specially difficult problem, but my solution is giving NZEC. I thought this was suspicious, so I wrapped my entire main code within a general try-catch block.
try { /* main program */ } catch (Throwable trh) { }
If it was really giving a runtime error, then the new outcome would have to be a Wrong Answer. Never the less, it is giving NZEC still. Do you guys have some idea of what may be happening? Could it be a bug in the judge?
Thanks in advance!
P.D: I have static declarations, but no static code. All inicializations were done within main, so I could wrap everything in the try-catch block.