View Pit Stop page for race #6 by codeforces — Ghost race
View profile for quirino (codeforces)
| Official speed | 61.24 wpm (87.20 seconds elapsed during race) |
|---|---|
| Race Start | May 26, 2022 3:51:12am UTC |
| Race Finish | May 26, 2022 3:52:39am UTC |
| Outcome | No win (2 of 4) |
| Opponents |
1. leoh8r (76.38 wpm) |
| Accuracy | 94.0% |
| Points | 58.18 |
| Text | #10001 (Length: 445 characters) /** Loop waiting for a connection and a valid command */ while (true) { Socket socket = null; InputStream stream = null; try { socket = serverSocket.accept(); socket.setSoTimeout(10 * 1000); stream = socket.getInputStream(); } catch (AccessControlException ace) { log.warn("StandardServer.accept security exception: " + ace.getMessage(), ace); continue; } catch (IOException e) { log.error("StandardServer.await: accept: ", e); System.exit(1); } |