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

Обсуждение задачи 1029. Министерство

Admins, 12 test is INCORRECT (+)
Послано qwerty 21 июл 2008 17:19
In the description of this problem is written that
"Each official collects a fee for signing a document. The fee is a positive integer not exceeding 10^9."
But in 12 test there is '0'.
I define that by that code and got TL.
for(i = 0; i < m; i++)
for(j = 0; j < n; j++)
{
scanf("%d", &a);
if(a == 0) while(1);
g[i][j] = a;
}

Please, Check tests or Correct description!
Re: Admins, 12 test is INCORRECT (+)
Послано Chmel_Tolstiy 21 июл 2008 20:47
I think your code can get TL using wrong algorithm. is without this line you get WA?
Re: Admins, 12 test is INCORRECT (+)
Послано Sandro (USU) 21 июл 2008 23:59
Right! 12 test and some others contain zeroes. Problem statement is corrected now.
Re: Admins, 12 test is INCORRECT (+)
Послано Chmel_Tolstiy 22 июл 2008 01:07
Oh, ok.