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