Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
fei0319 committed Feb 29, 2024
2 parents 7f7ca20 + aeeeab1 commit fed7768
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contest/abc331/abc331_g.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <bits/stdc++.h>
#include "atcoder/convolution"
#include "atcoder/modint"
#include <bits/stdc++.h>

using mint = atcoder::modint998244353;
using ll = long long int;
Expand All @@ -26,7 +26,7 @@ std::vector<int> solve(const std::vector<std::vector<int>> &F, int l, int r) {
if (l == r) {
return F[l];
}
int mid = (l + r) /2 ;
int mid = (l + r) / 2;
return atcoder::convolution(solve(F, l, mid), solve(F, mid + 1, r));
}

Expand Down

0 comments on commit fed7768

Please sign in to comment.