记录编号 593932 评测结果 AAAAAAAAAA
题目名称 [CSP 2022J]乘方 最终得分 100
用户昵称 Gravatarfather 是否通过 通过
代码语言 C++ 运行时间 0.030 s
提交时间 2024-09-22 08:52:53 内存使用 3.60 MiB
显示代码纯文本
#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,c,d=1000000000;
	cin>>a>>b;
	c=pow(a,b);
	if(c<=d && c>=1) cout<<c;
	else cout<<"-1";
	return 0;
}