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

Обсуждение задачи 1219. Symbolic Sequence

Wrong test
Послано Alexandr 11 июн 2014 05:24
This solution is OK. But it not satisfy the restrictions.
Your tests are too weak.

#include <iostream>
int main(int argc, char* argv[])
{
    int i= 0;
    for (i = 0; i < 1000000; i++)
            {
                printf("%c", rand()%26 + 'a');
            }
    return 0;
}
Re: Wrong test
Послано Talantsev Yegor [Intouchables] 30 июл 2014 12:13
I think that you miss conditions:
Every possible subsequence with two letters length occurs not more than 2 000 times;
Every possible subsequence with three letters length occurs not more than 100 times;
Re: Wrong test
Послано Hristo Nikolaev (B&W) 4 янв 2023 00:21
I think with just a few tweaks, and "some" luck you can get AC on 1589.