ENG  RUSTimus Online Judge
Online Judge
Задачи
Авторы
Соревнования
О системе
Часто задаваемые вопросы
Новости сайта
Форум
Ссылки
Архив задач
Отправить на проверку
Состояние проверки
Руководство
Регистрация
Исправить данные
Рейтинг авторов
Текущее соревнование
Расписание
Прошедшие соревнования
Правила
вернуться в форум

Обсуждение задачи 1100. Таблица результатов

Fastest Java solution - 0.203s
Послано void 28 июл 2010 05:16
First you should use BufferedReader for input and PrintWriter for output.
Then you should create a big char[] buffer, read() whole input (3000000 chars is enough), manually parse it for data and put it into an array of some kind of Collections.
While parsing you should calculate the length of output.
Then you should create a char buffer of calculated size, manually fill it and print() whole buffer at once.

If you still can't get the idea, write to Abrackadabraa@gmail.com.

Java isn't slow, you just can't cook it. =)

Edited by author 28.07.2010 05:20