Skip to content
New issue

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

modint の .val() の帰り値が int でなく unsigned int で帰ってくる #177

Open
PCTprobability opened this issue Jun 14, 2024 · 2 comments

Comments

@PCTprobability
Copy link

.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 を返しました。

@TumoiYorozu
Copy link
Contributor

確かにドキュメントと実装が合ってなさそうですね。ドキュメントの修正になりそうです

@yosupo06
Copy link
Collaborator

確かにです、ありがとうございます 全体的にunsignedを使わないライブラリなのでintを返すように変更したいです。破壊的変更になりますが

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants