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

Обсуждение задачи 1191. Держи вора!

WHY WA 1???????
Послано Todor Tsonkov 30 июн 2006 18:07
I tried to submit many times my solution which I think is right but I got WA 1 many times. Then I submitted the following solution:

#include <iostream>
using namespce std;
int main()
{
    cout<<"YES";
    return 0;
}

and I still have WA1, why (as far as I know the first test is the same as the sample test where the right output is YES)
The first test is not a sample for this problem (-)
Послано Vladimir Yakovlev (USU) 30 июн 2006 20:17


Edited by author 30.06.2006 20:18
Re: The first test is not a sample for this problem (-)
Послано Todor Tsonkov 1 июл 2006 13:05
Yup, you are right, when I submitted the following solution:

#include <iostream>
using namespce std;
int main()
{
cout<<"NO";
return 0;
}

I got WA 2, so it seems the problem is in my code :)