Leading and Trailing LightOJ - 1282

求前导3位数与后导3位数

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
ll qpow(ll a,ll b)
{
ll ans=1;
ll base=a;
while(b)
{
if(b&1)
ans=ans%1000*base%1000,ans%=1000;
base=base%1000*base%1000,base%=1000;
b>>=1;
}
return ans%1000;
}
int main()
{
ll t;
scanf("%lld",&t);
for(int k=1;k<=t;k++)
{
ll a,b;
scanf("%lld%lld",&a,&b);
ll s2=qpow(a,b);
ll s1=pow(10,2+fmod(b*log10(a),1));
printf("Case %d: %lld %03lld\n",k,s1,s2);
}
}
就算是一分钱,也是对作者极大的支持
------ 本文结束 ------

版权声明

Baccano by baccano is licensed under a Creative Commons BY-NC-ND 4.0 International License.
baccano创作并维护的Baccano博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证
本文首发于baccano 博客( http://baccano.fun ),版权所有,侵权必究。

小游戏

---小游戏:要不要来选择一下自己可能的老婆?---

简易发声器

---简易的七键钢琴插件---

可以使用鼠标点击琴键也可以使用主键盘1-7或者小键盘的1-7来操作

那么现在开始吧

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
0%