From bed945a17feccce06d0ae3d8318445b302225037 Mon Sep 17 00:00:00 2001 From: Ariel Date: Sun, 11 Feb 2024 12:36:42 +0800 Subject: [PATCH] Update include.hh --- include.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include.hh b/include.hh index 89c0b86..2b607c8 100644 --- a/include.hh +++ b/include.hh @@ -32,8 +32,8 @@ using pll = pair; constexpr int INF = 0x3f3f3f3f; constexpr ull MDL = 1e9 + 7; constexpr ull PRIME = 998'244'353; -constexpr ull MDL1 = 825; -constexpr ull MDL2 = PRIME; +constexpr ll MDL1 = 825; +constexpr ll MDL2 = PRIME; /* bit-wise operations */ #define lowbit(x) ((x) & -(x))