import std.algorithm, std.container, std.conv, std.math, std.range, std.typecons, std.stdio, std.string; auto rdsp(){return readln.splitter;} void pick(R,T)(ref R r,ref T t){t=r.front.to!T;r.popFront;} void readV(T...)(ref T t){auto r=rdsp;foreach(ref v;t)pick(r,v);} void main() { int n; real a, b; readV(n, a, b); auto c = (a+b)/2, d = (a*b).sqrt, eps = 1.0e-7L; struct Cir { real x, y, r; this(real x) { this.x = x; y = (d^^2 * (1 - (x-c)^^2/c^^2)).sqrt; r = ((x-a)^^2 + y^^2).sqrt - a; } } Cir e; if (n%2 == 1) { e = Cir(a+b); n = (n-1)/2; } else { auto calc1(real x) { auto e = Cir(x); return e.r - e.y; } auto bs = iota(0.0L, a+b, eps).map!(x => tuple(x, calc1(x))).assumeSorted!"a[1] tuple(x2, calc(e, x2))).assumeSorted!"a[1]