求 a 乘 b 对 p 取模的值。输入格式第一行输入整数 a ,第二行输入整数 b ,第三行输入整数 p 。输出格式输出一个整数,表示a*b mod p的值。数据范围1≤a,b,p≤1018输入样例:345输出样例:2a 和 b 都是1e18,相乘会爆long long,所以可以模拟快速幂的做法,将 b 转化为二进制再逐位处理。#include<bits/stdc++.h>using namespace std;typedef long long
malloc() allocates size bytes and returns a pointer to the allocated memory. The memory is not cleared. If size is 0, then malloc() returns either NULL, or a unique pointer value that can later be suc