记录编号 | 577278 | 评测结果 | AAAAAATAAA | ||
---|---|---|---|---|---|
题目名称 | [CSP 2022J]乘方 | 最终得分 | 90 | ||
用户昵称 | 00000 | 是否通过 | 未通过 | ||
代码语言 | C++ | 运行时间 | 1.000 s | ||
提交时间 | 2022-10-30 03:19:16 | 内存使用 | 1.37 MiB | ||
#include<bits/stdc++.h> #define ll long long using namespace std; ll a,b,c=1; int main(){ freopen("csp2022pj_pow.in","r",stdin); freopen("csp2022pj_pow.out","w",stdout); cin>>a>>b; for(int q=1;q<=b;q++) { c=c*a; if(c>1e9) { cout<<"-1"; return 0; } } cout<<c; return 0; }