We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.val() の帰り値が int ではなく unsigned int で帰ってきていそうな挙動を示します。
#include <bits/stdc++.h> using namespace std; #include <atcoder/all> using namespace atcoder; using mint = modint998244353; using mint2 = modint1000000007; int main(){ mint a = 1; mint2 b = 2; cout << a.val() - b.val() << endl; }
上記のコードが atcoder のコードテスト環境で 4294967295 を返しました。
The text was updated successfully, but these errors were encountered:
確かにドキュメントと実装が合ってなさそうですね。ドキュメントの修正になりそうです
Sorry, something went wrong.
確かにです、ありがとうございます 全体的にunsignedを使わないライブラリなのでintを返すように変更したいです。破壊的変更になりますが
No branches or pull requests
.val() の帰り値が int ではなく unsigned int で帰ってきていそうな挙動を示します。
上記のコードが atcoder のコードテスト環境で 4294967295 を返しました。
The text was updated successfully, but these errors were encountered: