记录编号 577273 评测结果 AAAAAATAAA
题目名称 [CSP 2022J]乘方 最终得分 90
用户昵称 Gravatardeng 是否通过 未通过
代码语言 C++ 运行时间 1.000 s
提交时间 2022-10-29 18:46:47 内存使用 0.57 MiB
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
long long a,b,n;
char a2[11],b2[11];
int main(){
	freopen("csp2022pj_pow.in","r",stdin);
	freopen("csp2022pj_pow.out","w",stdout);
	cin>>a>>b;
	n=a;
	if(a>10&&b>9){
		cout<<"-1";
		return 0;
	}
	for(int i=1;i<b;i++){
		a*=n;
		if(a<=0){
			cout<<"-1";
			return 0;
		}
	}
	if(a>1000000000){
		cout<<"-1";
	}else{
		cout<<a;
	}
	
	return 0;
}