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

Why n=2 it isn't ...
Posted by CleverKid 12 Feb 2002 21:59
0
X
*
1
1
X
*
+
+

Why it isn't this?
Re: Why n=2 it isn't ...
Posted by TheBlaNK 14 Feb 2002 06:48
i think it's wrong.
isn't it?
Re: Why n=2 it isn't ...
Posted by CleverKid 14 Feb 2002 13:14
> i think it's wrong.
> isn't it?

no,it's right
i've got ac:)
AC <> Right
Posted by Jizhu3 18 Feb 2002 18:02
Where is 2
Posted by ECUST Multistar 21 Feb 2002 19:12
> > i think it's wrong.
> > isn't it?
>
> no,it's right
> i've got ac:)
Re: Why n=2 it isn't ...But y WA if the output is correct?
Posted by William Hong 12 Mar 2002 17:37
> > i think it's wrong.
> > isn't it?
>
> no,it's right
> i've got ac:)

but then y dont they accept this?

program expression;
var i,j:integer;

begin
readln(j);
writeln('0');
for i := 1 to j do begin
writeln('x');
writeln('*');
writeln(i);
writeln('+');
end;
end.

this is wrong answer but the output is the same for n=1 or 2
Re: Why n=2 it isn't ...But y WA if the output is correct?
Posted by William Hong 12 Mar 2002 17:50
> > > i think it's wrong.
> > > isn't it?
> >
> > no,it's right
> > i've got ac:)
>
> but then y dont they accept this?
>
> program expression;
> var i,j:integer;
>
> begin
> readln(j);
> writeln('0');
> for i := 1 to j do begin
> writeln('x');
> writeln('*');
> writeln(i);
> writeln('+');
> end;
> end.
>
> this is wrong answer but the output is the same for n=1 or 2

p.s. it doesnt accept whether the x is upper or lower case
>
>