摘要: #include<stdio.h>#define M 1000000007int fp(int a,int b){ long long ret=1,pow=a;//ret:返回值;pow:基底 while(b!=0){ if(b&1) ret=(ret*pow)%M; pow=(pow*pow)%M 阅读全文
posted @ 2017-04-21 19:54 joeylee97 阅读(93) 评论(0) 推荐(0) 编辑
摘要: // // Name : POJ.cpp// Author : // Version :// Copyright : Your copyright notice// Description : Hello World in C++, Ansi-style// #include <iostream># 阅读全文
posted @ 2017-04-21 19:09 joeylee97 阅读(214) 评论(0) 推荐(0) 编辑
摘要: After having drifted about in a small boat for a couple of days, Akira Crusoe Maeda was finally cast ashore on a foggy island. Though he was exhausted 阅读全文
posted @ 2017-04-21 19:05 joeylee97 阅读(260) 评论(0) 推荐(0) 编辑