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

Обсуждение задачи 1000. A+B Problem

test system BUG !!!!!
Послано Alias aka Alexander Prudaev 16 ноя 2010 02:44
can anyone explain why this code gets AC ?

#include <stdio.h>

void ASS(bool b)
{
    if (!b)
    {
        while(1);;;
    }
}

int main()
{
    ASS(0);

    int a, b;
    scanf("%d %d", &a, &b);
    printf("%d\n", a + b);

    return 0;
}
Re: test system BUG !!!!!
Послано Sandro (USU) 16 ноя 2010 10:34
And where is a bug? This code works on my computer too. :)
Re: Re: test system BUG !!!!!
Послано Alias aka Alexander Prudaev 16 ноя 2010 16:04
but it must be TLE, the bug of course not in test system,
bug is in the compiler VS2010.