aboutsummaryrefslogtreecommitdiff
path: root/Math
diff options
context:
space:
mode:
authorAnthony Wang2020-08-21 11:44:01 -0500
committerAnthony Wang2020-08-21 11:44:01 -0500
commit038733ca900e6531ba757331bf352d1d2af8b675 (patch)
tree070e68ac617b26d3afa2abd5083e277f004565dc /Math
parent6e682272268bc6905f00688d18ed46df78de8297 (diff)
Enforce consistent style
Diffstat (limited to 'Math')
-rw-r--r--Math/numtheory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Math/numtheory.cpp b/Math/numtheory.cpp
index 51faffb..7a02afc 100644
--- a/Math/numtheory.cpp
+++ b/Math/numtheory.cpp
@@ -1,6 +1,6 @@
constexpr ll MOD = 1e9+7;
-ll fact[200002] = { 1 }, ifact[200002] = { 1 };
+ll fact[MN] = { 1 }, ifact[MN] = { 1 };
inline ll pw(ll base, ll exp) {
ll res = 1;