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

Обсуждение задачи 1059. Выражение

Read it, please.
Послано SPb SU #3 - 1 10 апр 2002 19:34
I think that if there are more than 1 tests to task,
my program simultaneously start all of this, and they say the result
of first wrong.

If so, I can say that my program (the same with old right solution)
generates WA for N == 1 ! My output is the same with example but WA!

I tried very many things to get AC. I failed. If tests or task was
changed, change example, please!

In any case, there is a mistake on TIMUS. Can anybody write me
(o_09@star.math.spbu.ru) who can fix this mistake?
I send many letters to acm.timus.ru but no answer.

I think there are many people who tried to solve this problem for a
lot of time. I know at least 11 persons (exclude me). This is so bad,
that I have no words.

Who can advise me something?

Spb SU #9 - 1.
I sent a E-mail,too. But so far I haven't got any reply.
Послано Micy 8 май 2002 18:59
Re: I get ACCCCCCCCCCCCC!!
Послано Jianghong Liu 20 авг 2002 16:46
here is my programme(in C++):

#include <iostream.h>
void main()
{
    int n;
    cin>>n;
    cout<<0<<endl;
    for(int i=1;i<=n;i++)
        cout<<"X\n*\n"<<i<<"\n+\n";
}