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