Skip to content

Commit

Permalink
fix verifier and info
Browse files Browse the repository at this point in the history
  • Loading branch information
Misuki743 committed Jan 25, 2024
1 parent bcb6cd1 commit e89b8b5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions math/mul_modp_convolution/info.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ forum = "https://github.com/yosupo06/library-checker-problems/issues/1087"

[params]
P_MIN = 2
P_MAX = 524288
MOD = 998244353
P_MAX = 524_288
MOD = 998_244_353
4 changes: 2 additions & 2 deletions math/mul_modp_convolution/verifier.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ int main() {
inf.readChar('\n');
inf.ensuref(isPrime(P), "P should be a prime");

inf.readInts(P, 0, MOD);
inf.readInts(P, 0, MOD - 1);
inf.readChar('\n');

inf.readInts(P, 0, MOD);
inf.readInts(P, 0, MOD - 1);
inf.readChar('\n');

inf.readEof();
Expand Down

0 comments on commit e89b8b5

Please sign in to comment.