From 9f12bd037f1ecc1b0cc9cd6271a953e3011cbb19 Mon Sep 17 00:00:00 2001 From: Anthony Wang Date: Fri, 25 Sep 2020 21:36:46 -0500 Subject: Cleanup --- Math/numtheory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Math/numtheory.cpp b/Math/numtheory.cpp index d25a984..a47a385 100644 --- a/Math/numtheory.cpp +++ b/Math/numtheory.cpp @@ -16,4 +16,4 @@ ll fact[MX] = { 1 }, ifact[MX] = { 1 }; inline ll nCr(int n, int k) { return fact[n]*ifact[k]%MOD*ifact[n-k]%MOD; } -for (int i = 0; i < N; ++i) fact[i+1] = (i+1ll)*fact[i]%MOD, ifact[i+1] = inv(fact[i+1]); +for (int i = 0; i < N; ++i) fact[i+1] = (i+1)*fact[i]%MOD, ifact[i+1] = inv(fact[i+1]); -- cgit v1.2.3-70-g09d2