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