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

Обсуждение задачи 1050. Подготавливая статью

WA5, any tests?
Послано motoras 24 июн 2019 15:15
I run out of ideas, trying to pass test #5. Does anyone can tell me how this test looks like?
Thank you,
Re: WA5, any tests?
Послано snamy520 23 авг 2019 04:47
There seem to be some non-ASCII characters in the test cases. If the input is loaded byte by byte, then the result should be output byte by byte as well.

I used Rust and handled the bytes as chars, which were stored as 4-byte unicode, but mistakenly output the result by chars instead of bytes.