|
|
back to boardAchtung! This problem contains one unobvious and unpleasant trick. In statement it is said that result must be output with "accuracy to 0.0001". But in fact you must output result rounded up to fourth digit after decimal point. So, if you output answer with some additional precision, you'll get WA. For example, I got "Accepted" when corrected line writeln (finres:0:5); to writeln (finres:0:4); in my program. Re: Achtung! Posted by DWED 24 Jul 2008 18:29 It means that your solution is not very accurate. My solution outputs a value "as is" without any truncation (just System.out.println(min);) and gets AC. |
|
|