__int128 真香
不过要写快读和快输出
#include <bits/stdc++.h>
using namespace std;
inline __int128 read(){
__int128 x = 0, f = 1;
char ch = getchar();
while(ch < '0' || ch > '9'){
if(ch == '-')
f = -1;
ch = getchar();
}
while(ch >= '0' && ch <= '9'){
x = x * 10 + ch - '0';
ch = getchar();
}
return x * f;
}
inline void print(__int128 x){
if(x < 0){
putchar('-');
x = -x;
}
if(x > 9)
print(x / 10);
putchar(x % 10 + '0');
}
int main(void){
__int128 a = read();
__int128 b = read();
__int128 p = read();
a%=p,b%=p;
print(a * b % p);
cout << endl;
return 0;
}
先输入三个ullong
在用int128乘
最后在转成ullong
香,不过不是你这样的!这题不需要快读快写!