import std.stdio, std.conv, std.string, std.range, std.math, std.algorithm; void main() { auto C = readln.strip.to!int; auto input = readln.split.to!(real[]); auto Rin = input[0], Rout = input[1]; // パップス・ギュルダンの定理 // 回転体の体積 = 回転させたい図形の面積 × 重心が動いた長さ auto area = PI * ((Rout - Rin) / 2) ^^ 2; auto length = (Rin + Rout) * PI; "%.16s".writefln(area * length * C); }