后面的数据是
in
419725568 322265835
out
271462017
输入x y
输出x^y mod 998244353
请问怎么写才不超时?
long long powerofn(long long x, long long y) {
long long result = 1;
while (y > 0) {
if (y % 2 == 1) {
result = result * x;
result = result % 998244353;
}
x = x * x;
x = x % 998244353;
y = y / 2;
}
return result;
}
int main(){
auto ans=powerofn(419725568 ,322265835);
cout<<ans<<endl;
}