For all the java submissions that do not get TLE, the run time is always
0ms.
For example, the following code will get WA with run time 0ms on a problem
with 10s time limit (e.g. 1009):
public class Main {
public static void main(String[] args) throws Exception {
long start = System.currentTimeMillis();
while (System.currentTimeMillis() - start <= 9000);
}
}
Original issue reported on code.google.com by Charizar...@gmail.com on 31 Dec 2008 at 12:27
Original issue reported on code.google.com by
Charizar...@gmail.com
on 31 Dec 2008 at 12:27