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

Обсуждение задачи 1438. Time Limit Exceeded

WA(7) Anyone help me?
Послано chenll 6 мар 2006 17:22
I got WA on test 7.
Is there some tricks on it?
There are % operations in this test. Check if you calculate it correctly (-)
Послано Dmitry 'Diman_YES' Kovalioff 6 мар 2006 18:41
Re: There are % operations in this test. Check if you calculate it correctly (-)
Послано chenll 6 мар 2006 18:46
int modFunction(int a,int b)
{
    int c=a%b;
    b=(b<0)?(-b):b;
    if(c<0)
        return c+b;
    return c;
}
is this correct?
I used the following construction (+)
Послано Dmitry 'Diman_YES' Kovalioff 6 мар 2006 18:51
func Mod(a,b: int): int;
var
   Res: int;
{
   Res:=a%b;
   if Res<0 then Res:=Res+abs(b);
   return Res;
}
Re: I used the following construction (+)
Послано chenll 6 мар 2006 19:00
i think we are the same.
So your mistake is somewhere else. Good luck (-)
Послано Dmitry 'Diman_YES' Kovalioff 6 мар 2006 19:06