문 제 소 스 코 드 #include typedef long long INT; constexpr INT P { 1'000'000'007 }; void Remain_Pow(const INT& , int , INT& ); void Binomial(); int main() { std::ios_base::sync_with_stdio(false); std::cin.tie(NULL); std::cout.tie(NULL); Binomial(); return 0; } void Remain_Pow(const INT& a, int b, INT& r) { INT temp{ a }; while (0 != b) { if (b & 1) r = (r * temp) % P; temp = (temp * temp) % P; b >>= ..