博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj 1995 Raising Modulo Numbers 快速模幂
阅读量:5021 次
发布时间:2019-06-12

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

#include
using namespace std;int quick_mod(int a,int b,int m){ a=a%m; int ans=1; while(b) { if(b&1) { ans=(ans*a)%m; } b>>=1; a=(a*a)%m; } return ans;}int main(){ int size; cin>>size; int m; int h; int a,b; while(cin>>m) { cin>>h; int ans=0; for(int i=0;i
>a>>b; ans=(ans+quick_mod(a,b,m))%m; } cout<
<
题目地址:

直接使用快速模幂 模板题

转载于:https://www.cnblogs.com/jingqi814/p/3581626.html

你可能感兴趣的文章
myBatis自动生成mapping,dao和model
查看>>
Android Serivce 高级篇AIDL讲解
查看>>
SpringBoot学习笔记(2):引入Spring Security
查看>>
图片加水印 PDF取缩略图
查看>>
bzoj 4180: 字符串计数
查看>>
安卓--布局设计-计算器
查看>>
Java重写《C经典100题》 --27
查看>>
ABP中的拦截器之EntityHistoryInterceptor
查看>>
【oracle】oracle数据库建立序列、使用序列实现主键自增
查看>>
使用SQLiteDatabase操作SQLite数据库第二种方法
查看>>
vue,一路走来(12)--父与子之间传参
查看>>
实现交换两个变量值的第二种方法
查看>>
英语单词学习备忘转载
查看>>
【C++】单例模式详解
查看>>
文本框根据关键字异步搜索内容
查看>>
SQLServer 基本语法
查看>>
python模块之multiprocessing模块, threading模块, concurrent.futures模块
查看>>
PHP 的 HMAC_SHA1算法 实现
查看>>
深入理解javascript原型和闭包_____全部
查看>>
2016年中国的SaaS服务商企业研究
查看>>