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

Common Board

Pascal Users Read
Posted by Jivko Ganev 22 Feb 2001 02:50
There are some problems with mark and release.
Don't use mark and release, because the judge system will
give you wrong answer even though your program is correct,
this happens because mark and release are obsolete and
delphi doesn't correctly support them.
Also don't use assign(f, 'con'); if you want to test your
programs with files use assign(input, filename) and remove
it later.This way you can do regular read/readln's which
work correctly.Follow the same rule for output i.e. assign
(output, filename); .