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 1369. Cockroach Race

Can author tell me what the precision with real number in test 24 is, i think i can't get WA with my algorithm
Posted by H.H.Quan( DHSP ) 28 May 2006 17:25
Re: Can author tell me what the precision with real number in test 24 is, i think i can't get WA with my algorithm
Posted by Furtuna Dan Emanuel 2 Sep 2006 03:24
I think I have WA #16 because of something else but can someone please tell me the precision needed to solve this task?
Re: Can author tell me what the precision with real number in test 24 is, i think i can't get WA with my algorithm
Posted by Ilya Grebnov[Ivanovo SPU] 3 Sep 2006 15:46
CONST
  EPS               = 1E-10;
  INF               = 1E20;

TYPE
  Float = Double;

.....
Re: Can author tell me what the precision with real number in test 24 is, i think i can't get WA with my algorithm
Posted by Al.Cash 25 Aug 2009 00:31
I'm using such precision, but I still have WA #24.
Can somebody tell my the possible reason of this WA?