记录编号 | 577443 | 评测结果 | AAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | [CSP 2022J]乘方 | 最终得分 | 100 | ||
用户昵称 | 张通 | 是否通过 | 通过 | ||
代码语言 | C++ | 运行时间 | 0.000 s | ||
提交时间 | 2022-11-03 23:07:49 | 内存使用 | 0.00 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,s=1; cin>>a>>b; s=pow(a,b); if(s>1000000000||a*b>1000000000) { cout<<-1; } else { cout<<s; } return 0; }