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