题目:[CSP-J 2022] 乘方
题目原文请移步下面的链接
- https://www.luogu.com.cn/problem/P8813
- 参考题解:https://www.luogu.com.cn/problem/solution/P8813
- 标签:
OI
、CSP-J/S
、模拟
- 难度:
入门
题解
思路
- 这道题纯模就可以,比较简单,思路就不再写了,分享下AC代码。
- 题解大家可移步看这里,很多童鞋写了各种解法。
- https://www.luogu.com.cn/problem/solution/P8813
代码
代码语言:javascript复制#include <bits/stdc .h>
using namespace std;
int main()
{
// freopen("pow.in", "r", stdin);
// freopen("pow.out", "w", stdout);
long long a, b;
scanf("%lld%lld", &a, &b);
long long ans = 1000000000;
long long c = a;
for (long long i = 1; i < b; i) {
a *= c;
if (a > ans) {
printf("%d", -1);
fclose(stdin);
fclose(stdout);
return 0;
}
}
printf ("%lld", a);
// fclose(stdin);
// fclose(stdout);
return 0;
}