ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1059. Expression

Read it, please.
Posted by SPb SU #3 - 1 10 Apr 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.
Posted by Micy 8 May 2002 18:59
Re: I get ACCCCCCCCCCCCC!!
Posted by Jianghong Liu 20 Aug 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";
}