Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yosupo06 committed Jun 19, 2024
1 parent c386003 commit 748a564
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion atcoder/convolution.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ void butterfly_inv(std::vector<mint>& a) {
auto r = a[i + offset + p];
a[i + offset] = l + r;
a[i + offset + p] =
(unsigned long long)(mint::mod() + l.val() - r.val()) *
(unsigned long long)((unsigned int)(l.val() - r.val()) + mint::mod()) *
irot.val();
;
}
Expand Down

0 comments on commit 748a564

Please sign in to comment.