博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
一本通 1616:A 的 B 次方
阅读量:5842 次
发布时间:2019-06-18

本文共 512 字,大约阅读时间需要 1 分钟。

快速幂板子题


Code:

#include 
#include
#include
#include
using namespace std;//Mystery_Sky//#define M 1000100#define ll long longll a, b, m;ll quickPow(ll x, ll k){ ll ret = 1; while(k) { if(k & 1) ret = (ret * x) % m; k >>= 1; x = (x * x) % m; } return ret;}int main() { scanf("%lld%lld%lld", &a, &b, &m); printf("%lld\n", quickPow(a, b)); return 0;}

转载于:https://www.cnblogs.com/Benjamin-cpp/p/11122845.html

你可能感兴趣的文章
解密javascript模块载入器require.js
查看>>
markdown 书写代码
查看>>
逆天通用水印扩展篇~新增剪贴板系列的功能和手动配置,卸除原基础不常用的功能...
查看>>
【转】彻底理解安卓里的ldpi、mdpi、hdpi、xhdpi、xxhdpi文件夹含义
查看>>
Java用WebSocket + tail命令实现Web实时日志
查看>>
vim for python
查看>>
国外某牛人的JsonModelBinder 实现 MVC 3.0
查看>>
Codeforces Round #395 (Div. 2)(A.思维,B,水)
查看>>
Enum
查看>>
hibernate 入门案例
查看>>
UISearchBar 点击取消回到原来位置时会跳动的解决方法
查看>>
【重新挂载磁盘空间】Linux系统/home的磁盘空间重新挂载给/root
查看>>
质控工具之TrimGalore使用方法
查看>>
Perl中的执行上下文
查看>>
docker 批量删除容器和镜像
查看>>
[linux] 查看目录/文件字节数
查看>>
servlet过滤器
查看>>
js 金额文本框实现代码
查看>>
js 兼容添加事件响应函数
查看>>
IP Failover Setup using Keepalived on CentOS/Redhat 6
查看>>