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 1020. Rope

wrong problem
Posted by xdex 27 Mar 2003 11:47
problem says :

The standard output should contain in its only line a real number
with two digits precision (after a decimal point) — a length of the
rope.

but then i send code like this :
write(trunc(len*100)/100 : 0 : 2);
i got WA, then i changed it to
write(len : 0 : 2);
i got AC.