| 比赛 | 2020级再出发之二进制拆分及运用 | 评测结果 | C |
|---|---|---|---|
| 题目名称 | 64位整数乘法 | 最终得分 | 0 |
| 用户昵称 | 王和谐 | 运行时间 | 0.000 s |
| 代码语言 | C++ | 内存使用 | 0.00 MiB |
| 提交时间 | 2023-07-24 11:47:49 | ||
#include<iostream>
#include<math.h>
using namespace std;
int main()
{
freopen("64mul.in","r","stdin");
freopen("64mul.out","w","stdout");
unsigned long long a,b,p;
cin>>a>>b>>p;
unsigned long long h;
h=a*b%p;
cout<<h;
return 0;
}