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

Обсуждение задачи 1367. Конфиденциально!

What is the answer for this testcase?
Послано Deepesson 9 янв 2021 01:49
#+-+-+-+-+-+
+-+-+-+-+-+#

Edited by author 09.01.2021 01:54
Re: What is the answer for this testcase?
Послано Deepesson 9 янв 2021 02:37
Ok, stupid mistake again.
Basically, the last line will be always \n
So if you did something like this to read the input:
std::string s;
while(!std::cin.tie(0)){
     std::cin >> s;
}
The Program will read an empty string.
So you need to read as:
while(!std::cin.tie(0)){
     std::cin >> s;
     if(!s.size())break;
}
I got WA #6, So I thought my diagonal code was wrong! Lol.

Edited by author 09.01.2021 02:47

Edited by author 15.01.2021 03:31

Edited by author 15.01.2021 03:32

Edited by author 15.01.2021 03:32
Re: What is the answer for this testcase?
Послано Deepesson 9 янв 2021 02:38
Btw the correct answer is:
11
11