热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

2017MultiUniversityTrainingContest3hdu6063

HDU6063思路:AC代码:#includeiostream#includestring.h#includestack#includ

HDU 6063

思路:

 

AC代码:

#include "iostream"
#include
"string.h"
#include
"stack"
#include
"queue"
#include
"string"
#include
"vector"
#include
"set"
#include
"map"
#include
"algorithm"
#include
"stdio.h"
#include
"math.h"
#pragma comment(linker, "/STACK:102400000,102400000")
#define ll long long
#define endl ("\n")
#define bug(x) cout<#define mem(a,x) memset(a,x,sizeof(a))
#define mp(x,y) make_pair(x,y)
#define pb(x) push_back(x)
#define ft (frist)
#define sd (second)
#define lrt (rt<<1)
#define rrt (rt<<1|1)
using namespace std;
const long long INF &#61; 1e18&#43;1LL;
const int inf &#61; 1e9&#43;1e8;
const int N&#61;1e6&#43;100;
const ll mod&#61;1e9&#43;7;ll pow(ll a, ll b){ll ans&#61;1;a%&#61;mod;while(b>0){if(b&1){ans*&#61;a;ans%&#61;mod;}a*&#61;a;a%&#61;mod;b>>&#61;1;}return ans;
}
int main(){ll n,m;int T&#61;0;while(cin>>n>>m){cout<<"Case #"<<&#43;&#43;T<<": "<<(pow(n,m)&#43;mod)%mod<<endl;}return 0;
}

 


转载于:https://www.cnblogs.com/max88888888/p/7420818.html


推荐阅读
author-avatar
陈柏佩66057
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有