比赛 CSP2022普及组 评测结果 AAWAAATAAA
题目名称 乘方 最终得分 80
用户昵称 以礼服人 运行时间 1.000 s
代码语言 C++ 内存使用 0.57 MiB
提交时间 2022-10-29 15:48:13
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
long long a,b;
int main()
{
	freopen("csp2022pj_pow.in","r",stdin);
	freopen("csp2022pj_pow.out","w",stdout);
	cin>>a>>b;
	long long s=1;
	for(long long i=b;i>0;i--)
	{
		if(s>1000000000)
		{
			cout<<"-1";
			return 0;
		}
		s=s*a;
	}
	cout<<s;
	
}