比赛 | CSP2022普及组 | 评测结果 | AAAAAAAAAA |
---|---|---|---|
题目名称 | 乘方 | 最终得分 | 100 |
用户昵称 | ANIG | 运行时间 | 0.000 s |
代码语言 | C++ | 内存使用 | 0.00 MiB |
提交时间 | 2022-10-29 16:26:24 | ||
#include <bits/stdc++.h> using namespace std; long long a,b; long long solve(){ long long res=1; for(int i=1;i<=b;i++){ res*=a; if(res>1000000000)return -1; } return res; } int main(){ freopen("csp2022pj_pow.in","r",stdin); freopen("csp2022pj_pow.out","w",stdout); cin>>a>>b; if(a==1)cout<<1; else cout<<solve(); return 0; }