pub trait FpsSqrt { type Output; // Required method fn fps_sqrt(self) -> Result<Self::Output, &'static str>; }
形式的冪級数の平方根
戻り値の型
$f(x) = \sum_0^{n-1} a_ix^i$について、$\sqrt{f(x)}$の先頭$n$項を求める。