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

New feature
Posted by Marat Bakirov 24 Apr 2001 19:15
Today I implemented a new feature. Now there is a
conditional define ONLINE_JUDGE, that you can use in your
programs.

example:

#ifdef ONLINE_JUDGE
  somthing
#endif


{$IFDEF ONLINE_JUDGE}
 something
{$ENDIF}
Thanks
Posted by Nazar Revutsky 24 Apr 2001 21:45
> Today I implemented a new feature. Now there is a
> conditional define ONLINE_JUDGE, that you can use in your
> programs.
>
> example:
>
> #ifdef ONLINE_JUDGE
>   somthing
> #endif
>
>
> {$IFDEF ONLINE_JUDGE}
>  something
> {$ENDIF}
Don't mention it. :)
Posted by Marat Bakirov 26 Apr 2001 17:56