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