浏览代码

another typo :(

Xi Ruoyao 5 年之前
父节点
当前提交
6b6c5aff9f
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      content/post/exam-time-complexity.md

+ 1 - 1
content/post/exam-time-complexity.md

@@ -109,7 +109,7 @@ test.c:15:11: runtime error: signed integer overflow: 13 * 479001600 cannot be r
 $2^{32}$ 取模,那么如果一堆数中质因子 $2$ 出现的总次数达到 $32$,
 则它们乘起来以后模 $2^{32}$ 肯定是 $0$。因此,
 
-$$64! \equiv 32, \mod 2^{32}$$
+$$64! \equiv 0, \mod 2^{32}$$
 
 (这只是一个粗糙的界,实际上 $34!$ 已经余 $0$ 了。)